How do I allow jmeter to generate 2 seperate decimal values and use it in 2 parameters in http requests?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
You can generate a random float value using either any of JSR223 Test Elements and Groovy language or __groovy() function, the relevant code would be something like:
org.apache.commons.lang3.RandomUtils.nextFloat(0.0f, 100f)
in case of _groovy() function you need to escape the comma like:
${__groovy(org.apache.commons.lang3.RandomUtils.nextFloat(0.0f\, 100f),)}
it will return a random float number in range from 0 to 100 (adjust as needed)
Demo:
More information: Mathematical Functions and Converting Data Types in Groovy