(page, timeout = 20000)
| 47 | } |
| 48 | |
| 49 | async function waitForIdle(page, timeout = 20000) { |
| 50 | await page.waitForLoadState('networkidle', { timeout }).catch(() => {}); |
| 51 | } |
| 52 | |
| 53 | async function clickFirst(page, selectors, label, options = {}) { |
| 54 | const throwOnMissing = options.throwOnMissing !== false; |
no outgoing calls
no test coverage detected