我想在jmeter中为我的http请求每次传递0到60个随机值。我正在通过Jmeter自动化API请求。我尝试了${__RandomString(10,,randomID)},但请求失败。如果有人能快点帮上忙,那对我有很大的帮助。
${__RandomString(10,,randomID)}
3hvapo4f1#
来试试这个
${__Random(0,60,randomID)}
ia2d9nvy2#
有一个__Random()函数,它在给定的范围内生成一个数字。
使用__RandomString(),您只能生成2位数,但范围不保证,它将在00和99之间
${__RandomString(2,0123456789,randomID)}
有关JMeter Functions概念的更多信息:Apache JMeter Functions - An Introduction
2条答案
按热度按时间3hvapo4f1#
来试试这个
ia2d9nvy2#
有一个__Random()函数,它在给定的范围内生成一个数字。
使用__RandomString(),您只能生成2位数,但范围不保证,它将在00和99之间
有关JMeter Functions概念的更多信息:Apache JMeter Functions - An Introduction