qa-browser-testing
SolidBrowser-based QA testing using playwright-cli. Visual verification, state checking, and E2E validation for web applications.
Testing & QA 6 stars
4 forks Updated 2 days ago Apache-2.0
Install
Quality Score: 81/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# QA Browser Testing
Browser testing for QA validation using `playwright-cli`. Use this when you need to
verify visual state, check UI behavior, or validate acceptance criteria that require
a running browser.
## When to use browser testing
```
AC requires verification → Can it be tested with unit tests?
├─ Yes (API response, data transform, validation logic) → Write unit test. STOP.
└─ No (requires browser) → Does it need visual verification?
├─ Yes (layout, colors, design match) → Screenshot with playwright-cli
└─ No (click flow, form submit, navigation) → Interact with playwright-cli
```
**Default to unit tests.** Only use browser testing when the acceptance criterion
genuinely requires a browser — visual state, client-side navigation, form interactions,
or cross-layer integration that can't be tested at the API level.
## playwright-cli quick reference
```bash
# Open and navigate
playwright-cli open http://localhost:<port>
playwright-cli goto http://localhost:<port>/other-page
# Viewport control
playwright-cli resize 1440 900 # desktop
playwright-cli resize 390 844 # mobile
# Screenshots
playwright-cli screenshot --filename /tmp/page.png
playwright-cli screenshot --filename /tmp/full.png --full-page
playwright-cli screenshot "button.submit" --filename /tmp/button.png # element
# Interact
playwright-cli click "Submit" # click by text/ref
playwright-cli fill "Email" "test@example.com"
playwright-cli select "Countr...
Details
- Author
- My-Next-Studio
- Repository
- My-Next-Studio/build-studio
- Created
- 2 weeks ago
- Last Updated
- 2 days ago
- Language
- JavaScript
- License
- Apache-2.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
Testing & QA Solid
qa
Browser-based QA verification. Launches a real browser, navigates the app, clicks buttons, fills forms, and tests user flows. Works as a standalone skill or as a phase end condition in campaigns. Requires Playwright (optional dependency, graceful skip if not installed).
1 Updated today
allysgrandiose674 Testing & QA Featured
playwright-cli
Automate browser interactions, test web pages and work with Playwright tests.
4,811 Updated today
github Testing & QA Listed
playwright-cli
Automate browser interactions, test web pages and work with Playwright tests.
3 Updated yesterday
sequencestream