My question:
Can I execute my collection 10 times and then stop executing the collection by writing any loop?
Details (like screenshots):
I have a collection with 15 requests. I want the collection to be executed 10 times in the collection runner and then the execution should stop.
How I found the problem:
I found this issue when I am trying to automate my collection
I’ve already tried:
I tried by setting the Iterations to 10 but it did not work and the last request in my collection uses postman.setNextRequest()
Could you share some code examples to see where this is going wrong?
What I would do in this situation is use setNextRequest to loop the collection 10 times and increment a variable with a check that calls setNextRequest(null) when we reach our limit to end the execution.