jmeter垮线程组设置全局变量(传递参数)
全局变量是指可以跨线程组调用。
第一种方式:通过函数助手__setProperty 设置 ,调用的时候直接用函数助手中__property获取变量。
生成:${__setProperty(newordertime1,${cancelEndTime},)}; 获取:${__property(newordertime1)}
第二种方式:使用BeanShell 中的props.put("OrderID",ID); 。
下面例子,是发送一个请求,然后通过正在表达式提取需要设置全局变量的值,再用BeanShell PostProcessor 将参数设置为全局变量。 调用参数直接用${__P(OrderID)}