How to do semi automatic login?

There are several good options:

  • PAUSE | 0 (wait for user to press continue) ← easiest option :slight_smile:
  • PROMPT command (wait for user input)
  • You can have two macros: One to navigate until captcha, and the second one for the remaining part (the 2nd one will have no OPEN command inside).
  • Make a Do...While loop that checks for the disappearance of the captcha e. g. with verifyElementPresent or verifyElementNotPresent. If the captcha is gone, the loop breaks and the macro continues. For more details see How to make a file wait for selection - #2 by admin
1 Like