my output is “Processing item…” after few time it changes to “Successful”. But at what time it change that doesn’t know. So I want to check that after every 5 seconds till 2min. If it appears in between then I want to store it in a variable. If it not changes after 2 mins then I want to show “Processing item…” or whatever it on screen by using message box.
Use a retry scope with 5 seconds delay with 20 max iterations
Or use a while loop with timeout on element exists with 5 seconds and max while loop iteration is 20 and then in while loop if element is found then exit the loop else continue
Conditional field is optional…if the activity inside retry fails then retry gets executed again…
Or if you want to specify condition then you can use any element exists to check the state of application if the required steps in retry are performed or not