File: class-mouse.md | Updated: 11/18/2025
On this page
The Mouse class operates in main-frame CSS pixels relative to the top-left corner of the viewport.
tip
If you want to debug where the mouse moved, you can use the Trace viewer or Playwright Inspector . A red dot showing the location of the mouse will be shown for every mouse action.
Every page object has its own Mouse, accessible with page.mouse
.
// Using ‘page.mouse’ to trace a 100x100 square.await page.mouse.move(0, 0);await page.mouse.down();await page.mouse.move(0, 100);await page.mouse.move(100, 100);await page.mouse.move(100, 0);await page.mouse.move(0, 0);await page.mouse.up();
Methods
Added before v1.9 mouse.click
Shortcut for mouse.move() , mouse.down() , mouse.up() .
Usage
await mouse.click(x, y);await mouse.click(x, y, options);
Arguments
X coordinate relative to the main frame's viewport in CSS pixels.
Y coordinate relative to the main frame's viewport in CSS pixels.
options Object
(optional)
Returns
Added before v1.9 mouse.dblclick
Shortcut for mouse.move() , mouse.down() , mouse.up() , mouse.down() and mouse.up() .
Usage
await mouse.dblclick(x, y);await mouse.dblclick(x, y, options);
Arguments
X coordinate relative to the main frame's viewport in CSS pixels.
Y coordinate relative to the main frame's viewport in CSS pixels.
options Object
(optional)
Returns
Added before v1.9 mouse.down
Dispatches a mousedown event.
Usage
await mouse.down();await mouse.down(options);
Arguments
options Object
(optional)
button "left" | "right" | "middle" (optional)#
Defaults to left.
defaults to 1. See UIEvent.detail .
Returns
Added before v1.9 mouse.move
Dispatches a mousemove event.
Usage
await mouse.move(x, y);await mouse.move(x, y, options);
Arguments
X coordinate relative to the main frame's viewport in CSS pixels.
Y coordinate relative to the main frame's viewport in CSS pixels.
options Object
(optional)
Returns
Added before v1.9 mouse.up
Dispatches a mouseup event.
Usage
await mouse.up();await mouse.up(options);
Arguments
options Object
(optional)
button "left" | "right" | "middle" (optional)#
Defaults to left.
defaults to 1. See UIEvent.detail .
Returns
Added in: v1.15 mouse.wheel
Dispatches a wheel event. This method is usually used to manually scroll the page. See scrolling
for alternative ways to scroll.
note
Wheel events may cause scrolling if they are not handled, and this method does not wait for the scrolling to finish before returning.
Usage
await mouse.wheel(deltaX, deltaY);
Arguments
Returns