I am trying to do some test with jMeter.
I have CSV file with the urls and want to iterate over all of them and make HTTP Request. I have achieved that by typing exa
You can define the urls in the csv data format and have Jmeter loop through it.
The csv file can be defined and loaded with the CSV data config.
The variable names stand for each of the columns in the csv file, and can be referred in the loop controllers.
Example:
${url}
CSV Data Set Config
, with the file path and the variable name url which stands for the column listing the urls. ${url}
with the http request handler to fire the request.CSV Data Set Config
set Recycle on EOF? = False
and Stop thread on EOF? = True
.