我想在JMeter Random函数之内执行算术函数,例如
${A}-1.${__Random(0,9,)}
其中A是从0-9开始的计数器变量。
But the above one return as 0-1.4 instead of -1.4.
任何帮助。是否可以在fn内执行加/减。
答案 0 :(得分:1)
我相信您需要替换此行:
${A}-1.${__Random(0,9,)}
使用__intSum() function的用户,例如:
${__intSum(${A},-1,)}.${__Random(0,9,)}
因为JMeter对加号,减号等一无所知,所以您需要明确地称呼这个function
演示:
有关JMeter函数概念的更多信息:Apache JMeter Functions - An Introduction