I'm using a jmeter script with while controller condition as
${__javaScript("${status}"=="Progress")}
Followed by one http request and from that request again I will extract the status. If the status is progress it will contine one http request inside loop else if the status success it will exit the loop. But i want to add assertion to ensure whether I get the status as success in the http request or not.
Because if i use assertion as Success in that http sampler, it checks all the reqest and obviously it will return false, and i need to add assertion only to the final http sampler of the while controller.
And so I can get error percentage with failing request in aggregate report and view results tree . Can anyone share your ideas please.
