Member Junction
    Preparing search index...

    Scroll the viewport (by DeltaX / DeltaY pixels) or scroll a specific element into view (by Selector). At least one of the three should be supplied; a driver scrolls Selector into view when present, otherwise applies the deltas.

    interface RemoteBrowserScrollAction {
        DeltaX?: number;
        DeltaY?: number;
        Kind: "scroll";
        Selector?: string;
    }
    Index

    Properties

    DeltaX?: number

    Horizontal scroll distance in pixels (positive = right).

    DeltaY?: number

    Vertical scroll distance in pixels (positive = down).

    Kind: "scroll"
    Selector?: string

    Optional CSS selector to scroll into view instead of applying deltas.