0
votes

I just started using Jmeter recently.

What I want: I want to run a test of 100 users by getting links from CSV file.

How I am doing: I created a Test-Plan, Added Thread Group, CSV Data Config (Child to Thread group), HTTP Request.

Given Values:

HTTP Request Default: Url Address (Tried with both HTTP & without HTTP in protocol section)

Thread Group: User: 100

Loop: Forever

CSV Data Set Config: File Name (Full Path, the file is not in bin folder)

Variable Name: Path

Recycle on EOF: False

Stop Thread on EOF: True

HTTP Request: IP Address:

Path: ${Path}

CSV File:

Path

Link1

Link2

Link3

What I am getting: Well the test is executing but it executing all link only once (one User), it not going for 100 User

Note: I am running the TestPlan from Command Mode

Thanks for your Time

1

1 Answers

0
votes

If you want each user to go through all links in the CSV file you need to amend Sharing Mode setting of the CSV Data Set Config to Current Thread

enter image description here

You can verify the behavior by adding __threadNum() function as request prefix/postfix

enter image description here