Member Junction
    Preparing search index...

    Click an element. Identify the target either by CSS Selector or by viewport coordinates (X / Y); a driver prefers Selector when both are present.

    interface RemoteBrowserClickAction {
        Kind: "click";
        Selector?: string;
        X?: number;
        Y?: number;
    }
    Index

    Properties

    Properties

    Kind: "click"
    Selector?: string

    Optional CSS selector identifying the element to click.

    X?: number

    Optional viewport X coordinate (used when no Selector is given).

    Y?: number

    Optional viewport Y coordinate (used when no Selector is given).