문제

I want to test a web application. Lets say that i have a php script that i want to test

www.example.com/jmeter.php?runtest=??

The jmeter.php with method GET reads an id that refers to each test! I have all my ids to a csv file and i read them with the CSV data set config.

CSV file
8
9
10

If i set the number of threads (users) to 3 i get 3 requests BUT is the same request!

www.example.com/jmeter.php?runtest=8
www.example.com/jmeter.php?runtest=8
www.example.com/jmeter.php?runtest=8

What i want? The following:

www.example.com/jmeter.php?runtest=8
www.example.com/jmeter.php?runtest=9
www.example.com/jmeter.php?runtest=10

Any ideas? Thanks!

도움이 되었습니까?

해결책

Try

set sharing mode : All Threads 

in csv config component.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top