I want to perform a load test with JMeter on our API using HTTP requests. I have 40 endpoints in a CSV file and there will be much more requests than just 40 (during 5 minute run it can be 100 000 requests).
My CSV file looks like this:
channels,/channels
pages,/pages
sites,/sites
.
36 more endpoints
.
seos,/seos
Is it possible to force JMeter to select the path from CSV file randomly?
Example
- request ... pick endpoint /pages and send GET request
- request ... pick endpoint /seos and send GET request
- request ... pick endpoint /sites and send GET request
- request ... pick endpoint /pages (AGAIN) and send GET request
etc. for more than 100 000 times in 5 minutes.
Thanks.