An open API service indexing awesome lists of open source software.

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

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
```