gbox-sdk
    Preparing search index...

    Interface ActionClickByPoint

    interface ActionClickByPoint {
        button?: "left" | "right" | "middle";
        double?: boolean;
        options?: Omit<
            undefined
            | GboxClient.V1.Boxes.ActionCommonOptions,
            "screenshot",
        > & ActionOptionsOverride;
        screenshotDelay?:
            | `${number}h`
            | `${number}m`
            | `${number}s`
            | `${number}ms`;
        x: number;
        y: number;
    }

    Hierarchy

    • OmitDeprecatedParams<Click>
      • ActionClickByPoint
    Index

    Properties

    button?: "left" | "right" | "middle"

    Mouse button to click

    double?: boolean

    Whether to perform a double click

    options?: Omit<
        undefined
        | GboxClient.V1.Boxes.ActionCommonOptions,
        "screenshot",
    > & ActionOptionsOverride

    Action common options

    screenshotDelay?: `${number}h` | `${number}m` | `${number}s` | `${number}ms`
    x: number

    X coordinate of the click

    y: number

    Y coordinate of the click