( device: DeviceInfo, x: number, y: number, )
| 86 | } |
| 87 | |
| 88 | export async function readAndroidTextAtPoint( |
| 89 | device: DeviceInfo, |
| 90 | x: number, |
| 91 | y: number, |
| 92 | ): Promise<string | null> { |
| 93 | return readAndroidTextAtPointInHierarchy(await captureAndroidUiHierarchyXml(device), x, y); |
| 94 | } |
| 95 | |
| 96 | export function verifyAndroidFilledTextInHierarchy( |
| 97 | xml: string, |
no test coverage detected