首页 > 代码库 > jmeter-beanshell参数调取

jmeter-beanshell参数调取

beanshell中获取url中参数

get请求:url=https://xx.xxx.cn/key=value

String value = http://www.mamicode.com/vars.get("value");

log.Info("value="http://www.mamicode.com/+value );

一直返回value=http://www.mamicode.com/null

之前一直用vars,但是没有仔细看他是操作变量的,导致value=http://www.mamicode.com/null

参考文案:http://www.cnblogs.com/puresoul/p/4949889.html

1、get请求:url=https://xx.xxx.cn/key=${value}

vars.put("value","value");

String value = http://www.mamicode.com/vars.get("value");

log.Info("value="http://www.mamicode.com/+value );

一直返回value=http://www.mamicode.com/value

2、或者在用户自定义变量中定义value的值

jmeter-beanshell参数调取