Wait for the logo to disappear

Ah, now I see that you want to wait for the logo to disappear. In this case use this code: If {picture} then {do this} - #2 by admin <= this code loops until an image appears. But you can change it to wait for the image to disappear by simply changing one line:

  • repeatIf | ${found} == 0

Change to:

  • repeatIf | ${found} > 0 ← Now it only breaks the loop if no image is found.
1 Like