jmeter常见参数 varsprevctx props 类的api
Posted 青春染指流年
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jmeter常见参数 varsprevctx props 类的api相关的知识,希望对你有一定的参考价值。
- ctx - ( JMeterContext ) - gives access to the context
- vars - ( JMeterVariables ) - gives read/write access to variables: vars.get(key); vars.put(key,val); vars.putObject("OBJ1",new Object()); vars.getObject("OBJ2");
- props - (JMeterProperties - class java.util.Properties) - e.g. props.get("START.HMS"); props.put("PROP1","1234");
- prev - ( SampleResult ) - gives access to the previous SampleResult (if any)
- sampler - (Sampler)- gives access to the current sampler
ctx 地址:http://jmeter.apache.org/api/org/apache/jmeter/threads/JMeterContext.html
vars 地址:http://jmeter.apache.org/api/org/apache/jmeter/threads/JMeterVariables.html
prev地址:http://jmeter.apache.org/api/org/apache/jmeter/samplers/SampleResult.html
其中vars、prev类很常用、api中介绍了一些方法
以上是关于jmeter常见参数 varsprevctx props 类的api的主要内容,如果未能解决你的问题,请参考以下文章