Check App State and Statements to retry

actually if you simply want to retry this click activity if it fails you dont have to do all that

simply do this

  1. enable verify result in click activity

  2. indicate verification target,
    this is the element robot needs to see to verify that the click is successful,
    in your case you can select a button you see after login is successful

    image

  3. change the properties so that retry = True and timeout = “3” meaning if robot doesnt see verification target in 3 seconds, it will retry the click action

NOTE
the max time in seconds robot will wait is set here common->timeout
its default is 30 seconds (if left blank). This means robot will wait 3 seconds (for verification element to appear), and retry if it doesnt appear , and keep repeating until 30 seconds has been reached

for reference
uipathF.xaml (15.9 KB)

@Primal

5 Likes