Is there anyway to randomised ramp-up in JMeter? I want to randomized ramp-up time for my JMX script.
You can use __Random function in Ramp Up Period field (seconds)
For example to random between 1-100 seconds:
${__Random(1,100,)}
The random function returns a random number that lies between the given min and max values.
You can also get dynamic value from property using __P function
Define the property value:
jmeter -Jgroup1.threads=7 -Jhostname1=www.realhost.edu
Fetch the values:
${__P(group1.threads)} -
return the value of group1.threads