What problem does it solve? Manually testing web pages and repeating browser interactions is slow and error-prone. This Skill lets you drive a real browser from the terminal using playwright-cli, so you can navigate pages, fill forms, click elements, capture screenshots, and debug UI flows without writing test files. ## Core Features & Use Cases - Terminal-based browser automation: Open pages, snapshot the DOM to get stable element refs, then click, type, fill, and press keys using those refs. - Artifact capture and debugging: Take screenshots, generate PDFs, record traces, and inspect console and network activity for UI debugging. - Session management: Isolate work with named sessions, with automatic session naming via CODEX_THREAD_ID inside Codex. - Use Case: You need to verify a login flow on a staging site. Open the page with the wrapper script, snapshot to get element refs, fill the credentials, submit the form, re-snapshot to confirm the result, and capture a screenshot as evidence. ## Quick Start Ask the AI to open a website with the Playwright wrapper script, snapshot the page, and click or fill elements using the refs from the snapshot.