Reputation: 740
Im new to REST API testing, I want to do a load of an HTTP REST API, is there any possibility to do a 100 number of parallel HTTP request testing with Jmeter?
And also my request need a query params, can I provide a list of values to Jmeter and Jmeter can loop each request with one param form the list provided?
Appreciate your help.
Upvotes: 0
Views: 959
Reputation: 168002
JMeter executes requests as fast as it can, I don't fully understand your 100 number of parallel HTTP request
stanza.
100
and set loop count to Forever
or -1
. In this case the actual number of requests per second will depend on your application response timeFor parameterizing your request with external data people normally use CSV Data Set Config
Upvotes: 2