Reputation: 788
In my JMeter project I make a request and I get a response like {id="fklajdlfja"}
and then I get one JSON file for each response.
My question is, is there an elegant way to merge all the ids in a file? My options are:
Any nicer solution?
Upvotes: 0
Views: 503
Reputation: 501
Extract the id from response, you can either use regular expression extractor or json post processor. Use Beanshell Post processor and append these id's into a file. That should be easiest way.
Upvotes: 1