I am thinking about how to test a servlet with two parameters: X and Y using JMeter.
X and Y are random numbers from 0 to 100.
I am thinking of a nested loop implementation, something like
for (int x = 0; x <= 100; x++)
for (int y = 0; y <= 100; y++)
servlet?param1=x¶m2=y
Can someone give a hint on how to implement this using Counterand Loop Controlleror something else?
source
share