chore(e2e): update register case

This commit is contained in:
Zeke Zhang 2024-11-28 09:25:24 +08:00
parent 83c6c55424
commit f9f217e01d

View File

@ -24,12 +24,9 @@ test.describe('auth', () => {
await page.goto('/'); await page.goto('/');
await page.getByRole('link', { name: 'Create an account' }).click(); await page.getByRole('link', { name: 'Create an account' }).click();
await page.getByPlaceholder('Username').click(); await page.getByLabel('block-item-Input-Username').getByRole('textbox').fill(username);
await page.getByPlaceholder('Username').fill(username); await page.getByLabel('block-item-Password-Password').getByRole('textbox').fill('zidonghuaceshi123');
await page.getByPlaceholder('Password', { exact: true }).click(); await page.getByLabel('block-item-Password-Confirm').getByRole('textbox').fill('zidonghuaceshi123');
await page.getByPlaceholder('Password', { exact: true }).fill('zidonghuaceshi123');
await page.getByPlaceholder('Confirm password').click();
await page.getByPlaceholder('Confirm password').fill('zidonghuaceshi123');
await page.getByRole('button', { name: 'Sign up' }).click(); await page.getByRole('button', { name: 'Sign up' }).click();
await expect(page.getByText('Sign up successfully, and automatically jump to the sign in page')).toBeVisible(); await expect(page.getByText('Sign up successfully, and automatically jump to the sign in page')).toBeVisible();