gpt4 book ai didi

random - 在 JMeter 的 JSR223 采样器中生成随机值

转载 作者:行者123 更新时间:2023-12-03 08:58:27 25 4
gpt4 key购买 nike

def index = [];
def randoms = [];
def size = new File("C:/Users/320027671/Desktop/JmeterPerformanceSuit/CompleteSuit/STU3/Post/index.csv").readLines().size();
File file = new File("C:/Users/320027671/Desktop/JmeterPerformanceSuit/CompleteSuit/STU3/Post/index.csv");
file.each { line ->
index << line
randoms << __Random(0,size,)
}

脚本出现错误

the method does not exists

脚本正在工作直到索引<<行,问题出在随机函数上

最佳答案

我假设你使用groovy作为语言(否则它不会工作)

您不能使用JMeter functions inside JSR223

您可以使用例如 RandomUtils 随机化每一行:

org.apache.commons.lang3.RandomUtils.nextInt(0, size-1); 

关于random - 在 JMeter 的 JSR223 采样器中生成随机值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53140637/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com