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 implement a nested loop which is something like
for (int x = 0; x <= 100; x++)
for (int y = 0; y <= 100; y++)
servlet?param1=x¶m2=y
Could anyone give a hint on how to implement this using Counter
and Loop Controller
or something else ?