Posts

Button

Clicks the button element.            click(): Promise<void>;            Forcefully clicks the button element.           forceClick(): Promise<void>;            Double clicks the button element.           doubleClick(forceClick?: boolean): Promise<void>;            Right clicks the button element.           rightClick(forceClick?: boolean): Promise<void>;            Clicks the button element at the specified coordinates.       @param x - The x-coordinate.       @param y - The y-coordinate.           clickAt(x: number, y: number, forceClick?: boolean): Promise<void>;            Clicks the center of the button element.           c...