What problem does it solve?
This Skill solves the problem of reliably automating complex web UI interactions—navigation, form filling, auth state handling, and evidence capture—without writing a full Playwright test from scratch.
Core Features & Use Cases
- Interactive, ref-based browser automation: Use snapshot-first workflows with element refs to drive clicks, fills, selects, uploads, screenshots, and media capture while minimizing brittle selectors.
- Debugging and observability for flaky flows: Enable tracing, inspect console output, and monitor network activity to diagnose failures quickly with reproducible artifacts.
- Deterministic testing via state and network control: Save and restore cookies/localStorage (state-save/state-load) and mock or intercept requests (route/unroute) to create stable scenarios.
Use case: When a regression breaks a login-to-checkout flow, snapshot the page, reproduce the failing step with trace recording, mock unstable third-party calls, and produce screenshots/traces as evidence.
Quick Start
Run browser automation by first opening the app and then taking a snapshot to identify element refs.