mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
24 lines
522 B
Markdown
24 lines
522 B
Markdown
---
|
|
sidebar_label: ElementHandle.touchEnd
|
|
---
|
|
|
|
# ElementHandle.touchEnd() method
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class ElementHandle {
|
|
touchEnd(this: ElementHandle<Element>): Promise<void>;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --------- | ------------------------------------------------------------ | ----------- |
|
|
| this | [ElementHandle](./puppeteer.elementhandle.md)<Element> | |
|
|
|
|
**Returns:**
|
|
|
|
Promise<void>
|