mirror of https://github.com/buster-so/buster.git
10 lines
474 B
TypeScript
10 lines
474 B
TypeScript
|
import { test, expect } from '@playwright/test';
|
||
|
|
||
|
test('Can enter in a user name', async ({ page }) => {
|
||
|
await page.goto('http://localhost:3000/app/new-user');
|
||
|
await page.getByRole('button', { name: 'Get Started' }).click();
|
||
|
await page.getByRole('textbox', { name: 'What is your full name' }).dblclick();
|
||
|
await page.getByRole('textbox', { name: 'What is your full name' }).fill('Chad');
|
||
|
await page.getByRole('button', { name: 'Create your account' }).click();
|
||
|
});
|