ElementHandle.touchMove() method

This method scrolls the element into view if needed, and then moves the touch to the center of the element.

Signature

class ElementHandle {
  touchMove(this: ElementHandle<Element>, touch?: TouchHandle): Promise<void>;
}

Parameters

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>