Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 514 Bytes

File metadata and controls

17 lines (13 loc) · 514 Bytes

extendedWaitUntil

Waits until an element becomes visible. Fails if the element is not visible after the timeout expires. This command will complete as soon as element becomes visible and is not going to wait for timeout to expire.

- extendedWaitUntil:
    visible: Element    # Same input as in assertVisible or tapOn
    timeout: 10000      # Timeout in milliseconds

Similarly, it can wait until an element disappears:

- extendedWaitUntil:
    notVisible: Element
    timeout: 10000