ElementHandle.touchMove() 方法
¥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
范围 | 类型 | 描述 |
---|---|---|
this | ElementHandle<元素> | |
touch | (可选的)可选 TouchHandle。如果提供,则将移动此触摸。如果未提供,则将移动第一个活动触摸。 |
Returns:
Promise<void>