gbox-sdk
    Preparing search index...

    Interface ActionClickByNaturalLanguage

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

    Hierarchy

    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`
    target: string

    Describe the target to operate using natural language, e.g., 'login button' or 'Chrome'.