Check App State and Statements to retry

ideally you should use the REFramework

but as a starting point you can do the following
put click activity in try-catch scope, then put try-catch in retry scope

in catch section you can refresh the page, then use rethrow activity to throw to error to retry scope,


so the whole process would be like this

  1. try click activity (every 3 seconds) until verification element appears
  2. if 30 seconds passed and no element appears, refresh page and retry
  3. number of retries /retry interval depends on retry scope properties

for reference
uipathF.xaml (20.3 KB)

1 Like