mcpbeat Sign in

Playwright Skill for Claude

Battle-tested Playwright patterns for E2E, API, component, visual, accessibility, and security testing. Covers locators, fixtures, POM, network mocking, auth flows, debugging, CI/CD (GitHub Actions, GitLab, CircleCI, Azure, Jenkins), framework recipes (React, Next.js, Vue, Angular), and migration guides from Cypress/Selenium. TypeScript and JavaScript.

495k tokens
context cost
the whole folder, loaded on every use
76
files
instructions only
0
copies elsewhere
how many repositories repackaged it
4468
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/zebbern/claude-code-guide --skill playwright-skill

What comes with it

1 157 551 bytes besides the instruction
LICENSE
ci/ci-github-actions.md
ci/ci-gitlab.md
ci/ci-other.md
ci/docker-and-containers.md
ci/global-setup-teardown.md
ci/parallel-and-sharding.md
ci/projects-and-dependencies.md
ci/reporting-and-artifacts.md
ci/test-coverage.md
core/accessibility.md
core/angular.md
core/api-testing.md
core/assertions-and-waiting.md
core/auth-flows.md
core/authentication.md
core/browser-apis.md
core/browser-extensions.md
core/canvas-and-webgl.md
core/clock-and-time-mocking.md
core/common-pitfalls.md
core/component-testing.md
core/configuration.md
core/crud-testing.md
core/debugging.md
core/drag-and-drop.md
core/electron-testing.md
core/error-and-edge-cases.md
core/error-index.md
core/file-operations.md
core/file-upload-download.md
core/fixtures-and-hooks.md
core/flaky-tests.md
core/forms-and-validation.md
core/i18n-and-localization.md
core/iframes-and-shadow-dom.md
core/locator-strategy.md
core/locators.md
core/mobile-and-responsive.md
core/multi-context-and-popups.md

The instruction itself

12 sections, as written by the author

Playwright Skill

> Opinionated, production-tested Playwright guidance — every pattern includes when (and when _not_) to use it.

50+ reference guides covering the full Playwright surface: selectors, assertions, fixtures, page objects, network mocking, auth, visual regression, accessibility, API testing, CI/CD, debugging, and more — with TypeScript and JavaScript examples throughout.

Golden Rules

  • getByRole() over CSS/XPath — resilient to markup changes, mirrors how users see the page
  • Never page.waitForTimeout() — use expect(locator).toBeVisible() or page.waitForURL()
  • Web-first assertionsexpect(locator) auto-retries; expect(await locator.textContent()) does not
  • Isolate every test — no shared state, no execution-order dependencies
  • baseURL in config — zero hardcoded URLs in tests
  • Retries: 2 in CI, 0 locally — surface flakiness where it matters
  • Traces: 'on-first-retry' — rich debugging artifacts without CI slowdown
  • Fixtures over globals — share state via test.extend(), not module-level variables
  • One behavior per test — multiple related expect() calls are fine

10. Mock external services only — never mock your own app; mock third-party APIs, payment gateways, email

Guide Index

Writing Tests

| What you're doing | Guide | Deep dive |

| -------------------------- | ----------------------------------------------------------- | ------------------------------------------------------------------ |

| Choosing selectors | locators.md | locator-strategy.md |

| Assertions & waiting | assertions-and-waiting.md | |

| Organizing test suites | test-organization.md | test-architecture.md |

| Playwright config | configuration.md | |

| Page objects | page-object-model.md | pom-vs-fixtures-vs-helpers.md |

| Fixtures & hooks | fixtures-and-hooks.md | |

| Test data | test-data-management.md | |

| Auth & login | authentication.md | auth-flows.md |

| API testing (REST/GraphQL) | api-testing.md | |

| Visual regression | visual-regression.md | |

| Accessibility | accessibility.md | |

| Mobile & responsive | mobile-and-responsive.md | |

| Component testing | component-testing.md | |

| Network mocking | network-mocking.md | when-to-mock.md |

| Forms & validation | forms-and-validation.md | |

| File uploads/downloads | file-operations.md | file-upload-download.md |

| Error & edge cases | error-and-edge-cases.md | |

| CRUD flows | crud-testing.md | |

| Drag and drop | drag-and-drop.md | |

| Search & filter UI | search-and-filter.md | |

Debugging & Fixing

| Problem | Guide |

| -------------------------- | --------------------------------------------- |

| General debugging workflow | debugging.md |

| Specific error message | error-index.md |

| Flaky / intermittent tests | flaky-tests.md |

| Common beginner mistakes | common-pitfalls.md |

Framework Recipes

| Framework | Guide |

| ----------------------------------- | ----------------------------- |

| Next.js (App Router + Pages Router) | nextjs.md |

| React (CRA, Vite) | react.md |

| Vue 3 / Nuxt | vue.md |

| Angular | angular.md |

Migration Guides

| From | Guide |

| -------------------- | ---------------------------------------------- |

| Cypress | from-cypress.md |

| Selenium / WebDriver | from-selenium.md |

Architecture Decisions

| Question | Guide |

| --------------------------- | ------------------------------------------------------------------ |

| Which locator strategy? | locator-strategy.md |

| E2E vs component vs API? | test-architecture.md |

| Mock vs real services? | when-to-mock.md |

| POM vs fixtures vs helpers? | pom-vs-fixtures-vs-helpers.md |

CI/CD & Infrastructure

| Topic | Guide |

| --------------------------------- | --------------------------------------------------------------- |

| GitHub Actions | ci-github-actions.md |

| GitLab CI | ci-gitlab.md |

| CircleCI / Azure DevOps / Jenkins | ci-other.md |

| Parallel execution & sharding | parallel-and-sharding.md |

| Docker & containers | docker-and-containers.md |

| Reports & artifacts | reporting-and-artifacts.md |

| Code coverage | test-coverage.md |

| Global setup/teardown | global-setup-teardown.md |

| Multi-project config | projects-and-dependencies.md |

Specialized Topics

| Topic | Guide |

| ------------------------------------------ | ----------------------------------------------------------------------- |

| Multi-user & collaboration | multi-user-and-collaboration.md |

| WebSockets & real-time | websockets-and-realtime.md |

| Browser APIs (geo, clipboard, permissions) | browser-apis.md |

| iframes & Shadow DOM | iframes-and-shadow-dom.md |

| Canvas & WebGL | canvas-and-webgl.md |

| Service workers & PWA | service-workers-and-pwa.md |

| Electron apps | electron-testing.md |

| Browser extensions | browser-extensions.md |

| Security testing | security-testing.md |

| Performance & benchmarks | performance-testing.md |

| i18n & localization | i18n-and-localization.md |

| Multi-tab & popups | multi-context-and-popups.md |

| Clock & time mocking | clock-and-time-mocking.md |

| Third-party integrations | third-party-integrations.md |

CLI Browser Automation

| What you're doing | Guide |

| ------------------------------------------- | ------------------------------------------------------------------- |

| CLI browser interaction | playwright-cli/SKILL.md |

| Core commands (open, click, fill, navigate) | core-commands.md |

| Network mocking & interception | request-mocking.md |

| Running custom Playwright code | running-custom-code.md |

| Multi-session browser management | session-management.md |

| Cookies, localStorage, auth state | storage-and-auth.md |

| Test code generation from CLI | test-generation.md |

| Tracing and debugging | tracing-and-debugging.md |

| Screenshots, video, PDF | screenshots-and-media.md |

| Device & environment emulation | device-emulation.md |

| Complex multi-step workflows | advanced-workflows.md |

Language Note

All guides include TypeScript and JavaScript examples. When the project uses .js files or has no tsconfig.json, examples are adapted to plain JavaScript.

Other skills for the same job

different authors, same section of the catalogue
Webapp Testing
by anthropics
vendor ×12

Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.

6k tokens scripts
Azure Microsoft Playwright Testing Ts
by lingxling
×1

Run Playwright tests at scale with cloud-hosted browsers and integrated Azure portal reporting.

2k tokens
Chrome Devtools
by christophacham
×1

Browser debugging, performance profiling, and automation via Chrome DevTools MCP. Use when user says "debug this page", "take a screenshot", "check network requests", "profile performance", "inspect console errors", or "analyze page load". Do NOT use for full E2E test suites (use playwright-skill) or non-browser debugging.

1k tokens
QA
by browser-use

QA-test a website or web app and return a 1-5 quality score (5 = flawless, 1 = broken) with evidence. Use when the user wants to test, QA, evaluate, score, or "check how good" a site, page, flow, or app — including a local dev server (e.g. "qa test localhost:5173", "does the checkout work?", "rate this landing page"). Drives a real Browser Use cloud browser, tunneling localhost automatically.

9k tokens
Playwright Component Testing
by microsoft
vendor

Set up component testing with Playwright using a story gallery — scaffold stories and a gallery dev page driven by the built-in mount fixture, no dedicated component-testing runtime. Use when asked to test React or Vue components in isolation with Playwright, or to migrate off @playwright/experimental-ct-react / -vue.

8k tokens scripts
Browser Testing With Devtools
by addyosmani

Tests in real browsers via Chrome DevTools MCP. Use when building or debugging anything that runs in a browser. Use when you need to inspect the DOM, capture console errors, analyze network requests, profile performance, or verify visual output with real runtime data. Requires the chrome-devtools MCP server to be configured.

4k tokens
Browser Harness
by browser-use

Always use browser-harness for any web interaction: automation, scraping, testing, or site/app work.

493k tokens scripts
Help Center UI Test
by Automattic

Run a browser-based UI review of the WordPress.com Help Center across multiple surfaces, looking for visual and behavioral issues. Use when asked to test the Help Center UI.

2k tokens

How to use it

Copy the folder

Take zebbern/playwright-skill from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.