mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
34ff00e2fe
* fix: added parts of website * fix: removed unnecessary lines * fix: updated contributing.md * fix: added parts of sidebar * fix: added all APIs * fix: added version 10.0.0 Co-authored-by: Jack Franklin <jacktfranklin@chromium.org>
29 lines
769 B
Markdown
29 lines
769 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Mouse](./puppeteer.mouse.md) > [click](./puppeteer.mouse.click.md)
|
|
|
|
## Mouse.click() method
|
|
|
|
Shortcut for `mouse.move`, `mouse.down` and `mouse.up`.
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
click(x: number, y: number, options?: MouseOptions & {
|
|
delay?: number;
|
|
}): Promise<void>;
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --- | --- | --- |
|
|
| x | number | Horizontal position of the mouse. |
|
|
| y | number | Vertical position of the mouse. |
|
|
| options | [MouseOptions](./puppeteer.mouseoptions.md) & { delay?: number; } | Optional <code>MouseOptions</code>. |
|
|
|
|
<b>Returns:</b>
|
|
|
|
Promise<void>
|
|
|