What problem does it solve? Testing local web applications manually is slow and error-prone. This Skill lets you write Playwright automation scripts that verify frontend functionality, debug UI behavior, capture screenshots, and collect browser console logs without manual clicking. ## Core Features & Use Cases - Server Lifecycle Management: The scripts/with_server.py helper starts one or more servers (backend and frontend), waits for them to be ready, runs your automation, and cleans up afterward. - Reconnaissance-Then-Action Pattern: Navigate to a page, wait for networkidle, inspect the rendered DOM or take a screenshot, then act on discovered selectors. - Example Scripts: Ready-made patterns for element discovery, static HTML automation via file:// URLs, and console log capture. - Use Case: You are developing a React app on port 5173 and want to verify the login form works. Use the helper to start the dev server, then run a Playwright script that fills the form, submits it, and screenshots the result. ## Quick Start Ask the AI to test your local web app at localhost:5173 by writing a Playwright script that navigates to the page, waits for it to load, and takes a screenshot.