mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
3b09e956c6
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
28 lines
606 B
Markdown
28 lines
606 B
Markdown
---
|
|
sidebar_label: Locator.click
|
|
---
|
|
|
|
# Locator.click() method
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class Locator {
|
|
abstract click(
|
|
clickOptions?: ClickOptions & {
|
|
signal?: AbortSignal;
|
|
}
|
|
): Promise<void>;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| ------------ | --------------------------------------------------------------------------- | ------------ |
|
|
| clickOptions | [ClickOptions](./puppeteer.clickoptions.md) & { signal?: AbortSignal; } | _(Optional)_ |
|
|
|
|
**Returns:**
|
|
|
|
Promise<void>
|