Member Junction
    Preparing search index...

    A normalized Remote Browser action — the flat field set the ExecuteRemoteBrowserAction mutation accepts, derived from a browser_* tool call by MapToolToAction. Only the fields meaningful for the action's Kind are populated; the rest stay undefined (the mutation's optional args).

    interface RemoteBrowserAction {
        DeltaX?: number;
        DeltaY?: number;
        Key?: string;
        Kind: RemoteBrowserActionKind;
        Ms?: number;
        Selector?: string;
        Text?: string;
        Url?: string;
        X?: number;
        Y?: number;
    }
    Index

    Properties

    DeltaX?: number

    Horizontal scroll delta in px (scroll).

    DeltaY?: number

    Vertical scroll delta in px (scroll).

    Key?: string

    Key name to press, e.g. 'Enter' / 'Tab' (key).

    The action discriminator the server switches on.

    Ms?: number

    Wait duration in ms (wait).

    Selector?: string

    CSS selector to target (click / type / scroll / wait).

    Text?: string

    Text to type (type).

    Url?: string

    Target URL (openUrl).

    X?: number

    Viewport X coordinate for a positional click (click).

    Y?: number

    Viewport Y coordinate for a positional click (click).