What problem does it solve?
This Skill helps developers test local web applications by automating frontend UI checks, capturing screenshots, and surfacing browser logs with Playwright.
Core Features & Use Cases
- Playwright-powered UI verification: Validate frontend functionality across components and states.
- Visual debugging: Capture screenshots to diagnose UI issues.
- Use Case: Imagine you are validating a local dev app before a release; use this Skill to run automated checks against the running server and report failures.
Quick Start
Install Python and Playwright, then install browsers:
- pip install playwright
- playwright install
Run your automation with the helper:
- python scripts/with_server.py --server "npm run dev" --port 5173 -- python your_automation.py
- python scripts/with_server.py
--server "cd backend && python server.py" --port 3000
--server "cd frontend && npm run dev" --port 5173
-- python your_automation.py