I want to test a given HTTP request multiple times, say 25 times. Also, I have n number of payloads for the HTTP request body. So, I got around to add these n payloads to a CSV file and to populate the HTTP request using them. So each of the n HTTP requests has to be executed 25 times. How do I get the results to be ordered by the payload? In other words, how do I extract the 25 requests made per payload?
My current test plan looks like this! Note that there are 14 unique requests and a loop count of 25. But the results seem to be jumbled up. I want a sequential ordering per bulk of responses. Any help with this regard is highly appreciated. Sorry for the poor explanation of the problem. If the question needs further clarification let me know :)


