Skip to main content
Version: Next

Mouse.move() method

Moves the mouse to the given coordinate.

Signature:

class Mouse {
abstract move(
x: number,
y: number,
options?: Readonly<MouseMoveOptions>
): Promise<void>;
}

Parameters

Parameter

Type

Description

x

number

Horizontal position of the mouse.

y

number

Vertical position of the mouse.

options

Readonly<MouseMoveOptions>

(Optional) Options to configure behavior.

Returns:

Promise<void>