playwright-cli (microsoft)
- Testing
Drives a real browser one command at a time — open a page, click and type by element reference, read back a DOM snapshot — so an agent can walk through and verify a whole web flow end to end. It is a live browser-driving CLI, not a unit-test framework and not a static page analyzer.
A situation it fits
A flaky signup flow only fails in the real site: you want a tool that can run the site like a person, fill fields, click buttons, and confirm what actually renders after each step.
5 scenarios in the bank answer to playwright-cli (microsoft). The rest are in the game.
Skills it gets confused with
These share a family with playwright-cli (microsoft), which is another way of saying they are the ones you might reach for by mistake.
- ai-test-generation (petrkindlmann)Turns a spec, user story, code diff, or API schema into brand-new test code through a staged pipeline — pull out requirements, build a coverage matrix, define the oracles, then emit the tests — with guardrails against invented APIs and assertion-free filler. It AUTHORS fresh tests from requirements; it is not for driving a browser or auditing a suite you already have.
- test-data-generation (ajgeddes)Manufactures realistic, consistent fixtures and seed data with factories and fake-data libraries, so tests get varied users, records, and edge cases without hand-writing each one. It produces the DATA a test feeds on — not the test logic, the assertions, or the runner itself.
- test-driven-development (superpowers)The discipline of writing a failing test before any production code: watch it fail for the right reason, add just enough code to make it pass, then refactor. It governs the ORDER in which you write code, not which framework runs it — it is a way of working, not a test runner or a coverage tool.
Knowing what playwright-cli (microsoft) does is the easy half. Telling it apart from the others under time pressure is the game.
Today's sessionplaywright-cli (microsoft) is part of microsoft/playwright-cli. Licence: Apache-2.0. The description above was written for this game, not taken from the skill.