Hello JMeter Community,
I think I have a straight forward question. So at the end of a target URL I
am trying to pass in some JSON criterion. The request works fine if I do
not have jmeter parameters.
Url
...criteria=%7B%22category%22%3A%22"all"%22%2C%22type%22%3A%22all%22%2C%22so
rt%22%3A%22date%22%7D
Some of the values can vary so I was hoping to randomly submit these values
from .csv file
all,all,date
thing,stuff, date
Etc...
New URL
Url
...criteria=%7B%22category%22%3A%22${category}%22%2C%22type%22%3A%22${type}%
22%2C%22sort%22%3A%22${sort}%22%7D
The variables are not being picked up when I execute the tests from the .csv
file.
What is the proper syntax I need to make this work? Are there some escapes
or something I am not including in front of the variables?
Thanks in advance for your replies and consideration.
Carl