https://github.com/quanghuybest2k2/playwright
Automation testing with Playwright
https://github.com/quanghuybest2k2/playwright
automated-testing playwright testing
Last synced: about 2 months ago
JSON representation
Automation testing with Playwright
- Host: GitHub
- URL: https://github.com/quanghuybest2k2/playwright
- Owner: quanghuybest2k2
- License: mit
- Created: 2025-09-25T13:34:47.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-09-25T13:38:16.000Z (9 months ago)
- Last Synced: 2025-10-04T06:42:34.729Z (9 months ago)
- Topics: automated-testing, playwright, testing
- Language: TypeScript
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Install and run
```bash
cp .env.example .env
```
```bash
npm install
```
Runs the end-to-end tests.
```bash
npm test
```
Starts the interactive UI mode.
```bash
npm run ui
```
## Other Command
Runs the tests only on Desktop Chrome.
```bash
npx playwright test --project=chromium
```
Runs the tests in a specific file.
```bash
npx playwright test example
```
Runs the tests in debug mode.
```bash
npx playwright test --debug
```
Auto generate tests with Codegen.
```bash
npx playwright codegen
```