I have test plan in jmeter with few SOAP samplers where I append to request body counter value and I'm looking for way how to increment counter before each sampler request.
With setup below jmeter is peforming requests in this order:
First Request - with counter 1
Second Request - with counter 1
First Request - with counter 2
Second Request - with counter 2
I would like to achive this behaviour:
First Request - with counter 1
Second Request - with counter 2
Third Request - with counter 3
...
N Request - with counter n
Number of users: Number of threads: 1 Ramp-Up Period: 1 Loop Count: 2
Counter Starting value: 1 Increment: 1 Maximum value: 2
How can I do it ? I'm guessing I should introduce Loop Controller somehow ?