extendedWaitUntil
Pause flow execution until an element is visible or disappears. Identify the element using a selector.
Examples
Wait up to 30 seconds for "some text" to appear on the screen
- extendedWaitUntil:
visible:
text: "some text"
timeout: 30000
Wait up to 30 seconds for "some text" to disappear from the screen
- extendedWaitUntil:
notVisible:
text: "some text"
timeout: 30000
Related Commands
Last updated
Was this helpful?