Is there any way to run two ThreadGroup
consecutively in a loop for a certain amount of time? I am writing a test scenario in which I have to create a task for multiple users and then fulfill this task by them. Therefore, I decided to divide the scenario into two thread groups, because it needs one user to create a task and many users to complete it. Everything works fine, but the problem arises when I try to run the test in several iterations.
I tried to check Run Test Group consecutively
check-box, but tests instead of performing alternately, e.g.
ThreadGroup 1
ThreadGroup 2
ThreadGroup 1
ThreadGroup 2
perform as follows
ThreadGroup 1
ThreadGroup 1
ThreadGroup 2
ThreadGroup 2
Is it possible to somehow make thread groups execute alternately? I would be very grateful for any advice.