mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
f481922175
* Adds tsdoc to Mouse class * Updates puppeteer class tsdoc * docs(new): add TSDoc comments to BrowserFetcher (#6078) * Adds tsdoc for Touchscreen (#6087) Co-authored-by: martinsplitt <martin@geekonaut.de> * Adds tsdoc to Mouse class * Fixes tsdoc comment for Mouse class Co-authored-by: martinsplitt <martin@geekonaut.de>
29 lines
818 B
Markdown
29 lines
818 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Mouse](./puppeteer.mouse.md) > [move](./puppeteer.mouse.move.md)
|
|
|
|
## Mouse.move() method
|
|
|
|
Dispatches a `mousemove` event.
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
move(x: number, y: number, options?: {
|
|
steps?: number;
|
|
}): Promise<void>;
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --- | --- | --- |
|
|
| x | number | Horizontal position of the mouse. |
|
|
| y | number | Vertical position of the mouse. |
|
|
| options | { steps?: number; } | Optional object. If specified, the <code>steps</code> property sends intermediate <code>mousemove</code> events when set to <code>1</code> (default). |
|
|
|
|
<b>Returns:</b>
|
|
|
|
Promise<void>
|
|
|