I have a csv file which contains a column named "query". One of the entires I have for query is /user/${id}/list/${list}
.
What I would like to do is let jMeter overwrite the ${list} and ${id} variables in the query when it is passed to a HTTP Sampler with variable values already in use from previous steps in my test plan.
For example:
- In test plan, create ${id} = 5 and ${list} = 10.
- In test plan, open csv file that contains query string.
- In test plan, perform use a HTTP Sampler. Path in query should be the query value passed from csv file. 3a. Jmeter should take query passed to sampler and replace ${id} and ${list} with the values stored to those variables within test plan (5 and 10).
Right now when I try this, the HTTP response comes back showing the request was made to /user/${id}/list/${list}
, not /user/5/list/10
.
Does anyone know how to force the substitution through jMeter? Is it even possible?