f07ad2c661
This PR updates the docs regarding configuring puppeteer. In addition, some changes have been made to the documentation generator to show default values on the documentation site. Also fixes: https://github.com/puppeteer/puppeteer/pull/9144
26 lines
566 B
Markdown
26 lines
566 B
Markdown
---
|
|
sidebar_label: ElementHandle.clickablePoint
|
|
---
|
|
|
|
# ElementHandle.clickablePoint() method
|
|
|
|
Returns the middle point within an element unless a specific offset is provided.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class ElementHandle {
|
|
clickablePoint(offset?: Offset): Promise<Point>;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --------- | ------------------------------- | ----------------- |
|
|
| offset | [Offset](./puppeteer.offset.md) | <i>(Optional)</i> |
|
|
|
|
**Returns:**
|
|
|
|
Promise<[Point](./puppeteer.point.md)>
|