I have a collection with 3 requests: one to get an authorization token, another with a GET and the last with a POST.
I only want to run the first one when the token expires and the last one based on the result from the GET, but for that I have to iterate through the data file without going through all the 3 requests. Is there a way I can do that on the test script, so I can get the next data from the file before the iteration actually ends?