Retry a failing request

Hey Guys, the above retry logics work perfectly when running test as a Collection set. However if I run a test manually, it doesn’t execute the setNextRequest.

Is there a way we could make this retry feature working even when manually running just that one test.

For example I have two test cases,

Get Request 1: I expect a jsonObject ‘status’ in the response to have the value ‘Completed’. But until it finally says completed, it can say ‘In process’. So I retry the same request using setNextRequest(Get Request 1) until I see ‘Completed’. And I verify some data.
Note: This is where I have added the above retry logic in Tests section.

Get Request 2: I use one of the data from response from Get Request 1 and hit another endpoint to verify another set of data.

The retry logic I have added on Tests of Get Request 1 works perfectly when I run both the tests together as a Collection. But it doesn’t work when I want to just run the Get Request 1 by itself.

Is there a way I could get this retry to work when I just want to run Get Request 1 manually without running from Collection set?