(session: SessionState)
| 261 | } |
| 262 | |
| 263 | async function readAndroidSnapshotNodes(session: SessionState): Promise<SnapshotNode[]> { |
| 264 | const rawSnapshot = await snapshotAndroid(session.device, { |
| 265 | interactiveOnly: false, |
| 266 | }); |
| 267 | return attachRefs(pruneGroupNodes(rawSnapshot.nodes)); |
| 268 | } |
| 269 | |
| 270 | async function tapAndroidDialogButton( |
| 271 | session: SessionState, |
no test coverage detected