2023-02-03 10:59:21 +00:00
|
|
|
---
|
|
|
|
sidebar_label: ElementHandle.touchEnd
|
|
|
|
---
|
|
|
|
|
|
|
|
# ElementHandle.touchEnd() method
|
|
|
|
|
|
|
|
#### Signature:
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class ElementHandle {
|
2023-08-24 18:32:29 +00:00
|
|
|
touchEnd(this: ElementHandle<Element>): Promise<void>;
|
2023-02-03 10:59:21 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
<table><thead><tr><th>
|
2023-02-03 10:59:21 +00:00
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
Parameter
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Type
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Description
|
|
|
|
|
|
|
|
</th></tr></thead>
|
|
|
|
<tbody><tr><td>
|
|
|
|
|
|
|
|
this
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
[ElementHandle](./puppeteer.elementhandle.md)<Element>
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
</tbody></table>
|
2023-02-03 10:59:21 +00:00
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<void>
|