(x: number, y: number)
| 252 | } |
| 253 | |
| 254 | public async doubleTap(x: number, y: number): Promise<void> { |
| 255 | const wda = await this.wda(); |
| 256 | await wda.doubleTap(x, y); |
| 257 | } |
| 258 | |
| 259 | public async longPress(x: number, y: number, duration: number) { |
| 260 | const wda = await this.wda(); |