mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
823a9df442
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
21 lines
1.2 KiB
Markdown
21 lines
1.2 KiB
Markdown
---
|
|
sidebar_label: ClickOptions
|
|
---
|
|
|
|
# ClickOptions interface
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
export interface ClickOptions
|
|
```
|
|
|
|
## Properties
|
|
|
|
| Property | Modifiers | Type | Description | Default |
|
|
| ---------- | --------------------- | ----------------------------------------- | ------------------------------------------------------------------------------------- | -------------- |
|
|
| button | <code>optional</code> | [MouseButton](./puppeteer.mousebutton.md) | | 'left' |
|
|
| clickCount | <code>optional</code> | number | | <code>1</code> |
|
|
| delay | <code>optional</code> | number | Time to wait between <code>mousedown</code> and <code>mouseup</code> in milliseconds. | <code>0</code> |
|
|
| offset | <code>optional</code> | [Offset](./puppeteer.offset.md) | Offset for the clickable point relative to the top-left corner of the border box. | |
|