(page: import("@playwright/test").Page)
| 23 | await page.locator('[data-testid="add-form-button"]').waitFor({ state: "visible", timeout: 15000 }); |
| 24 | } |
| 25 | |
| 26 | async function clickAddForm(page: import("@playwright/test").Page) { |
| 27 | await page.locator('[data-testid="add-form-button"]').click(); |
| 28 | await page.locator('[data-testid="form-name-input"] input').waitFor({ state: "visible", timeout: 10000 }); |
| 29 | } |
| 30 | |
| 31 | async function saveFormDrawer(page: import("@playwright/test").Page) { |