Hi, I would like to run JMETER using two different data sources. The first data source (userDs.csv) will be used to store the user related information and will look like:
user1,password1 user2,password2 .. .. user10,password10. Each user after connected to the system will execute a set of transactions and transaction related information that will possibly be kept in transaction data source such as: transactionId1,transactionDetail1 transactionId2,transactionDetail2 .. .. .. transactionId100, transactionDetail100 So 10 users will execute 100 unique transactions.For instance, the execution schema will be like: user1 --> transactionId1, transactionId2, .. transactionId10 user2 --> transactionId11, transactionId12, .. transactionId20 .. .. user10 --> transactionId91, transactionId92, .. transactionId100 I tried to do this using thread properties, by setting user count 10 and loop count 10. However it ended up trying to read 100 users and each one tries to execute 1 transaction from the transaction data source. Is there a way to achieve what I am trying to do? Thanks in advance, H.
