mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
83 lines
829 B
Markdown
83 lines
829 B
Markdown
---
|
|
sidebar_label: MouseOptions
|
|
---
|
|
|
|
# MouseOptions interface
|
|
|
|
#### Signature:
|
|
|
|
```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>
|
|
|
|
`optional, deprecated`
|
|
|
|
</td><td>
|
|
|
|
number
|
|
|
|
</td><td>
|
|
|
|
Determines the click count for the mouse event. This does not perform multiple clicks.
|
|
|
|
**Deprecated:**
|
|
|
|
Use [MouseClickOptions.count](./puppeteer.mouseclickoptions.md#count).
|
|
|
|
</td><td>
|
|
|
|
`1`
|
|
|
|
</td></tr>
|
|
</tbody></table>
|