Member Junction
    Preparing search index...

    Wait — either for a fixed duration (Ms) or until an element matching Selector appears. At least one should be supplied; a driver waits for Selector when present, otherwise sleeps for Ms.

    interface RemoteBrowserWaitAction {
        Kind: "wait";
        Ms?: number;
        Selector?: string;
    }
    Index

    Properties

    Properties

    Kind: "wait"
    Ms?: number

    Fixed wait in milliseconds.

    Selector?: string

    Optional CSS selector to wait for instead of a fixed duration.