puppeteer/docs/api/puppeteer.mouseoptions.md

83 lines
829 B
Markdown
Raw Permalink Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: MouseOptions
---
# MouseOptions interface
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
export interface MouseOptions
```
## Properties
<table><thead><tr><th>
Property
</th><th>
Modifiers
</th><th>
Type
</th><th>
Description
</th><th>
Default
</th></tr></thead>
<tbody><tr><td>
<span id="button">button</span>
</td><td>
`optional`
</td><td>
[MouseButton](./puppeteer.mousebutton.md)
</td><td>
Determines which button will be pressed.
</td><td>
`'left'`
</td></tr>
<tr><td>
<span id="clickcount">clickCount</span>
</td><td>
2024-04-04 07:17:26 +00:00
`optional, deprecated`
</td><td>
number
</td><td>
Determines the click count for the mouse event. This does not perform multiple clicks.
2024-04-04 07:17:26 +00:00
**Deprecated:**
Use [MouseClickOptions.count](./puppeteer.mouseclickoptions.md#count).
2024-04-04 07:17:26 +00:00
</td><td>
`1`
</td></tr>
</tbody></table>