Reputation: 2399
I want to use CSV Data Set Config to modify the path of a HTTP Request.
120,120 121,121
paraa, parab
./my/path/with/?{paraa}/?{parab}/
.I tried and I failed.
Is there anyway to work this around?
Upvotes: 6
Views: 23906
Reputation: 12873
Seems that you incorrectly refer jmeter variables.
Try
/my/path/with/${paraa}/${parab}/
instead,
where ${paraa}, ${parab}
refer corresponding values extracted in CSV Data Set Config:
Upvotes: 20