Jmeter - I have multiple values ( 250 values approx as a minimum ) returned from a Get Request in the form of array in json format , i need pass each of the value in the array as a parameter in next GET request
Request 1
> Get http://xxx/store1?
Response in json format looks like this
{"store1":"peirre","inventorylist":["item1","item2","item3"..........."item250"]}
I will need to use each one of item in next GET request like this to get is feautures like price , available quantity,production site etc.,
Request 2
Get https://xxx/store1/item1?
Get https://xxx/store1/item2?
Get https://xxx/store1/item3?
It would be easy when i can read the response and write each value in the array to CSV file so that my next get request would simply read the CSV file and fire all the requests
Is there a way to achieve this ???
Thank you in advance