(device: DeviceInfo, x: number, y: number)
| 16 | export { readAndroidTextAtPoint } from './fill-verification.ts'; |
| 17 | |
| 18 | export async function pressAndroid(device: DeviceInfo, x: number, y: number): Promise<void> { |
| 19 | await runAndroidAdb(device, ['shell', 'input', 'tap', String(x), String(y)]); |
| 20 | } |
| 21 | |
| 22 | export async function swipeAndroid( |
| 23 | device: DeviceInfo, |
no test coverage detected