Reputation: 1237
I parse json to variable using jmeter, and I can only parse to a certain point, in this JSON I would like to parse the value of tt_cid
, that is located under nurl
parameter in JSON , How to parse this value? (I managed to parse the entire nurl
but not inside it).
I put the JSON PIC and the extractor that I used to parse nurl
, I would like to parse tt_cid
that is inside nurl
field.
Upvotes: 1
Views: 497
Reputation: 58892
you need to add a Regular Expression Extractor
after your JSON Extractor that will use the variable created by the JSON Extractor.
You need to select JMeter Variable
radio button with nurl
value after JSON Extractor:
Regex will be:
&tt_cid(\W+)
Upvotes: 1