@runloop/api-client - v1.4.0
    Preparing search index...

    Interface ComputerMouseInteractionParams

    interface ComputerMouseInteractionParams {
        action:
            | "mouse_move"
            | "left_click"
            | "left_click_drag"
            | "right_click"
            | "middle_click"
            | "double_click";
        coordinate?: Coordinate
        | null;
    }
    Index

    Properties

    Properties

    action:
        | "mouse_move"
        | "left_click"
        | "left_click_drag"
        | "right_click"
        | "middle_click"
        | "double_click"

    The mouse action to perform.

    coordinate?: Coordinate | null

    The x (pixels from the left) and y (pixels from the top) coordinates for the mouse to move or click-drag. Required only by action=mouse_move or action=left_click_drag