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<Element> | |
touch | (Optional) An optional TouchHandle. If provided, this touch will be moved. If not provided, the first active touch will be moved. |
Returns:
Promise<void>