Open thienphuong opened 11 months ago
Nguồn ở đây
test.describe('New Todo', () => { test('should allow me to add todo items @smoke', async ({ page }) => { // create a new todo locator const newTodo = page.getByPlaceholder('What needs to be done?'); // Create 1st todo. await newTodo.fill(TODO_ITEMS[0]); await newTodo.press('Enter'); .....
command
npx playwright test -g @smoke
Nguồn ở đây
command