(page: Page, path: string)
| 7 | } |
| 8 | |
| 9 | export const waitForPath = async (page: Page, path: string) => { |
| 10 | await page.waitForURL(path, {waitUntil: "domcontentloaded"}) |
| 11 | } |
| 12 | |
| 13 | export const clickButton = async (page: Page, name: string, locator?: Locator) => { |
| 14 | const button = (locator || page).getByRole("button", {name}).first() |
no outgoing calls
no test coverage detected