I'm using jmeter version 5.4.1. My load test script uses csv file which contains a lot of users. I want unique user on each thread but same user on each iteration of thread group as I want to restart thread group when some specific condition occurs with same user. All the solutions I have tried reads the next line from csv file and logins with new user instead of previous one.
The solutions I have tried are:
- Select "Same user on each iteration" option in thread group
- Use "start next thread loop" option in thread group
- I used Flow control action option "start next thread loop" after the condition
- I used JSR233 Sampler and added the following line to start new thread group SampleResult.setStartNextThreadLoop(true);
Can anyone please help me with this?