Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mhsnalm/calendly-playwright-automation
Calendly Automation
https://github.com/mhsnalm/calendly-playwright-automation
automation calendly nodejs playwright
Last synced: about 1 month ago
JSON representation
Calendly Automation
- Host: GitHub
- URL: https://github.com/mhsnalm/calendly-playwright-automation
- Owner: mhsnalm
- License: mit
- Created: 2025-01-02T14:24:49.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-01-02T14:31:46.000Z (about 1 month ago)
- Last Synced: 2025-01-02T15:27:47.168Z (about 1 month ago)
- Topics: automation, calendly, nodejs, playwright
- Language: JavaScript
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# playwright-automation
## Initialize a playwright repo
npm init playwright@latest## Verify playwright version
npm playwright -v## Run all tests
npx playwright test## Run specific test file
npx playwright test example.spec.js## Run tests specifically using chromium
npx playwright test --project=chromium## Run in headed mode
The command npx playwright test --headed runs tests in headed mode, meaning the browser will be visible during the test execution.npx playwright test --headed
## Show test report
npx playwright show-report