如何在jmeter中将setupthreadgroup中的lists变量列表共享到一个普通的threadgroup中?
例如,如果我在setupthreadgroup中有list1=[[1,2],[3,4],[5,6]],并且我想在后续的线程组中使用相同的list1=[[1,2],[3,4],[5,6]],我们如何实现这一点?
我正在尝试使用props保存它。将('listOfData ',list1)放在setupThreadGroup和普通threadGroup中。我正在尝试使用props访问它。get(listOfData[1][1])
1条答案
按热度按时间kpbpu0081#
您需要更改此选项:
改为:
props
只是java.util.Properties的简写,有关此简写和其他可用于JSR223测试元素的JMeter API简写的更多信息,请参见JavaDoc中的所有可用函数和Top 8 JMeter Java Classes You Should Be Using with Groovy文章