2022-08-06 14:49:20 +00:00
|
|
|
---
|
2023-02-13 10:16:54 +00:00
|
|
|
sidebar_label: ElementHandle.touchStart
|
2022-08-06 14:49:20 +00:00
|
|
|
---
|
|
|
|
|
2023-02-13 10:16:54 +00:00
|
|
|
# ElementHandle.touchStart() method
|
2022-08-06 14:49:20 +00:00
|
|
|
|
2022-10-24 14:31:12 +00:00
|
|
|
#### Signature:
|
2022-08-06 14:49:20 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class ElementHandle {
|
2023-02-13 10:16:54 +00:00
|
|
|
touchStart(this: ElementHandle<Element>): Promise<void>;
|
2022-08-06 14:49:20 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | ------------------------------------------------------------ | ----------- |
|
|
|
|
| this | [ElementHandle](./puppeteer.elementhandle.md)<Element> | |
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<void>
|