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

waitForAnimationToEnd

Last updated