I can only get it to work for one call at a time. I've looked around quite a bit and haven't found any answers for this specific scenario.
Its a cleanup scenario where I want to delete all the objects in an array before I run my other tests.
Scenario: Cleanup
1st call - retrieves an array of objects and I assign the object in the [0] position to a variable.
2nd call - I then use that variable in a Delete call to delete that object.
Repeat calls 1 and 2- I want to run the GET call each time to assign the new object in the [0] position and then run the Delete call again until the array is empty.
Last call - once the array hits [] the test will stop
If I put the "retry until" only before the Delete call (or any call) it only keeps trying to run that one call multiple times. In the case of the Delete call it only tries to run the same variable value. I need the Delete test to use the new variable each time. I can't figure out how to get the "retry until" action to run multiple steps sequentially
Any help would be greatly appreciated. Or if there is a better way to do this that would be great too.