问题
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
来源:https://stackoverflow.com/questions/52500217/jmeter-how-may-i-sum-random-2-float-numbers