I have a set of JSON templates in a CSV file and a DataInsert:
{"Data":"${DataInsert}"}, testdatainsert
Variables are defined as JSONTemplate,DataInsert
I'm running an HTTP request with the body:
${__V(JSONTemplate${DataInsert})}
And I would like this to send:
{"Data":"testdatainsert"}
However, what I end up sending is JSONTemplatetestdatainsert
I dont think I understood this documentation very well: https://jmeter.apache.org/usermanual/functions.html#what_can_do
Any help would be appreciated.