How to execute multiple user logins with different inputs in jMeter?

I have several login IDs. I want to simulate user login. At first I tried to select the registration data of the first line, and also tried them in the loop controller, but did not collect line by line.

How to assign each user the ability to select each row through streams with multiple inputs.

+4
source share
2 answers

Yes, I just did it in three steps, like,

1. Create a text file (or csv file) containing usernames and passwords separated by commas. Put this in the same directory as your test plan, as

enter image description here

2. CSV DataSet . USER PASS. , ( ),

enter image description here

3. ${USER} ${PASS} (HTTP Request) , enter image description here

, ,

+7
0

All Articles