What problem does it solve? Manually driving a browser for testing, scraping, or form submission is slow and token-expensive when done through screenshot-heavy tools. This Skill automates browser tasks through the Playwright CLI, saving accessibility-tree snapshots to disk and sending only compact summaries to the LLM, which cuts token usage by over 90,000 tokens compared to Playwright MCP. ## Core Features & Use Cases - Full browser automation: Open pages, click, fill forms, navigate, manage tabs, and take snapshots or screenshots using element refs from snapshots. - Session and state management: Run multiple isolated named browser sessions in parallel, persist profiles, and save or restore cookies, localStorage, and sessionStorage. - Network mocking and debugging: Intercept and mock requests, capture console and network logs, record traces and videos, and generate Playwright test code from your interactions. - Use Case: Test a login flow on your staging site by opening the page, filling the email and password fields via snapshot refs, clicking submit, saving the authenticated state to a file, and reusing it in later runs. ## Quick Start Use the playwright-cli skill to open https://example.com, fill in the login form, and take a snapshot of the result.