This method scrolls the element into view if needed, and then moves the touch to the center of the element.
class ElementHandle {
touchMove(this: ElementHandle<Element>, touch?: TouchHandle): Promise<void>;
}
Parameter | Type | Description |
---|---|---|
this | [ElementHandle](./puppeteer.elementhandle.md)<Element> | |
touch | [TouchHandle](./puppeteer.touchhandle.md) | _(Optional)_ An optional [TouchHandle](./puppeteer.touchhandle.md). If provided, this touch will be moved. If not provided, the first active touch will be moved. |
Returns:
Promise<void>