我有两个线程组
创建客户
创建帐户
从第一个线程组中,我捕获了一个名为customerId的变量。
如何在第二个线程组中使用该变量?
答案 0 :(得分:1)
您不能共享变量,您可以使用{> 3 将变量转换为JMeter属性
${__setProperty(propertyName, ${variableName})}
setProperty函数设置JMeter属性的值。
在第二个线程组中使用__setProperty
${__property(propertyName)}
您可以将其转换回JMeter变量:
${__property(propertyName, newVariableName)}
$ {__ property(user.dir,UDIR)}-返回user.dir的值并保存在UDIR中