puppeteer/docs/api/puppeteer.locator.click.md

28 lines
731 B
Markdown
Raw Normal View History

2023-06-02 17:46:10 +00:00
---
sidebar_label: Locator.click
---
# Locator.click() method
#### Signature:
```typescript
class Locator {
abstract click<ElementType extends Element>(
this: Locator<ElementType>,
options?: Readonly<LocatorClickOptions>
2023-06-02 17:46:10 +00:00
): Promise<void>;
}
```
## Parameters
| Parameter | Type | Description |
| --------- | ------------------------------------------------------------------------- | ------------ |
| this | [Locator](./puppeteer.locator.md)&lt;ElementType&gt; | |
| options | Readonly&lt;[LocatorClickOptions](./puppeteer.locatorclickoptions.md)&gt; | _(Optional)_ |
2023-06-02 17:46:10 +00:00
**Returns:**
Promise&lt;void&gt;