如何在两个线程组之间使用变量

时间:2019-04-30 07:06:34

标签: jmeter

我有两个线程组

  1. 创建客户

  2. 创建帐户

从第一个线程组中,我捕获了一个名为customerId的变量。

如何在第二个线程组中使用该变量?

1 个答案:

答案 0 :(得分:1)

您不能共享变量,您可以使用 3 将变量转换为JMeter属性

${__setProperty(propertyName, ${variableName})}
  

setProperty函数设置JMeter属性的值。

在第二个线程组中使用__setProperty

 ${__property(propertyName)}

您可以将其转换回JMeter变量:

 ${__property(propertyName, newVariableName)}
  

$ {__ property(user.dir,UDIR)}-返回user.dir的值并保存在UDIR中