I have a test scenario in which I need similar kind of requests to be executed by the same thread and all threads should start at the same time.
- If I use 1 thread group with multiple threads, threads execute random requests from the csv file. (How to make a request to be executed by a particular thread)
- If I use multiple thread groups with 1 thread each and break my csv file to contain requests specific to each thread group, I guess it works. (but is this a correct approach) and though its said all thread groups start at the same time I can see that in logs start time for each thread group is different.
please suggest what would be the best approach to implement the required behavior