( params: SelectorRuntimeDeviceParams, text: string, )
| 209 | } |
| 210 | |
| 211 | async function findTextInWaitSnapshot( |
| 212 | params: SelectorRuntimeDeviceParams, |
| 213 | text: string, |
| 214 | ): Promise<boolean> { |
| 215 | const snapshot = await captureWaitSnapshot(params); |
| 216 | return Boolean(findNodeByLabel(snapshot.nodes, text)); |
| 217 | } |
| 218 | |
| 219 | async function captureWaitSnapshot(params: SelectorRuntimeDeviceParams) { |
| 220 | const captureRuntime = createSelectorCaptureRuntime({ |
no test coverage detected
searching dependent graphs…