(page: Page, email: string, password: string)
| 5 | test.use({ storageState: { cookies: [], origins: [] } }) |
| 6 | |
| 7 | const fillForm = async (page: Page, email: string, password: string) => { |
| 8 | await page.getByTestId("email-input").fill(email) |
| 9 | await page.getByTestId("password-input").fill(password) |
| 10 | } |
| 11 | |
| 12 | const verifyInput = async (page: Page, testId: string) => { |
| 13 | const input = page.getByTestId(testId) |