Skip to main content
Version: Next

Mouse.move() method

Dispatches a mousemove event.

Signature:

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

Parameters

ParameterTypeDescription
xnumberHorizontal position of the mouse.
ynumberVertical position of the mouse.
options{ steps?: number; }(Optional) Optional object. If specified, the steps property sends intermediate mousemove events when set to 1 (default).

Returns:

Promise<void>