Playwright Playground
Inside that directory, you can run several commands:
Runs the end-to-end tests.
npx playwright test
UI-mode.
Runs the end-to-end tests innpx playwright test --ui
Runs the tests only on Desktop Chrome.
npx playwright test --project=chromium
Runs the tests in a specific file.
npx playwright test example
Runs the tests in debug mode.
npx playwright test --debug
Auto generate tests with Codegen.
npx playwright codegen
The docs
Visit https://playwright.dev/docs/intro for more information.