I have a scenario where I need to execute the http calls concurrently with a set of data (say 5 different data set).And then with same data set need to execute another set of https calls sequentially. And then with same data set need to execute another set of https calls concurrently again. These 3 cases I need to test with multiple iterations.
I tried with 3 separate thread groups. First one have number of threads 5 with Loop count 1. And the second one have number of threads 1 with Loop count 5. And the Third one have number of threads 5 with Loop count 1.
But this will not work when I need to execute the scenario for multiple iterations.