如何将参数(令牌)传递给另一个线程组,我需要使用从另一个线程组传递的参数作为动态 url

How to pass parameter (token) to another thread group , i need to use the parameter pass from another threadgroup as dynamic url

如何将参数(token)传递给另一个线程组,我需要使用从另一个线程组传递的参数作为动态url(如上图,我需要使用Survey令牌作为下一个线程组的参数)

我已经尝试了一些技巧,但仍然卡住了

结果GETSurveyToken传递的token不成功的地方在/svap/survey/[token]

之后

希望有人能帮忙??

谢谢

我尝试使用:正则表达式提取器,json 提取器,但使用预处理器获取 parameter/variable

根据documentation

Properties are not the same as variables. Variables are local to a thread; properties are common to all threads, and need to be referenced using the __P or __property function.

正则表达式提取器给你的是一个 JMeter 变量 所以为了能够在这个或其他线程组的其他线程中使用它,你需要将它转换成JMeter 属性 使用 __setProperty() function. Once done you can access the value using __P() function

如果您的逻辑更复杂,即您需要在第二个线程组中“等待”直到令牌可用,请考虑使用 Inter-Thread Communication Plugin