I have used While controller in Jmeter and fetching the data (i.e JSON _id values) one by one from the Response. total there are 50 Id's/per response.
- E.g. "_id: "57565556654","_id":"68676665555", "_id": "87686877545"
Http Request - When this request is submitted I am getting _id from the response. Used JSON extractor to fetch the _id's from the Response. i.e. 50 ids. Ref Name = DeleteQuestionsID
In Debug Sampler DeleteQuestionsID_MatchNr shows DeleteQuestionsID_MatchNr =1, bcoz JSOn extarctor is running inside While loop
I need to Pass these 50 Id's one by one to Next Http request which is outside the While loop.
Http Request : `'/v1/tests/'$'{TestID}/questions/${DeleteQuestionsID}
`How to achieve this?