标签:登陆接口 添加 接口 strong 方便 images roc 语句 stp
此文来源与组里小白的分享~
Jmeter 如何实现跨线程组传递参数(以传递token为例)
1.首先选择一个登陆接口(线程组1),添加正则表达式提取器提取token,接着再添加一个后置处理器BeanShell PostProcessor
2.BeanShell PostProcessor中参数项输入引用变量${token};脚本项输入动作语句${__setProperty(token1,${token},)};
3.在线程组2添加一个前置处理器BeanShell PreProcessor
4.在BeanShell PreProcessor中录入脚本String a1=props.get("token1");vars.put("token2",a1)
5.由于线程2中BeanShell PreProcessor将新的token1定义为token2,因此在线程2中可引用${token2}来提取token
总结:使用该方法可以省去在每个线程中独立创建获取token的http请求的步骤,较为方便。
小白
标签:登陆接口 添加 接口 strong 方便 images roc 语句 stp
原文地址:http://www.cnblogs.com/susanhonly/p/7484757.html