(page: Page)
| 106 | }`); |
| 107 | } |
| 108 | |
| 109 | export async function waitForOverviewPageLoad(page: Page) { |
| 110 | // Wait for the loading indicator to disappear and be replaced (with timeout): |
| 111 | await page |
| 112 | .locator('webstatus-overview-content >> text=Loading features...') |
| 113 | .waitFor({state: 'hidden', timeout: 15000}); |
| 114 | } |
| 115 | |
| 116 | export async function waitForSidebarLoaded(page: Page) { |
no outgoing calls
no test coverage detected