I want to read 2 csv's file. One file is for the users and other is for the products. Once login ,I need to loop the products(from csv)and submit the requests. After that second user with the same the loop .
Created CSV data config and added the users.csv Added loop controller (lo0p 3 times) Added http request pass the user details to the url.saved the auth key in token parameter Another CSV data config added to read products.csv Added http request and add product as parameter.
Given ThreadGroup threads as 3(no of users).
But the order is not as expected. 1st user is picking the 2 products and 2rd user picking the third product again 1st user picking the first product.
I need user has to pick all the products.
Any suggestions?