$npx skillfedfor your agent

playwright

This skill teaches you how to build robust end-to-end tests using Playwright's browser automation framework. You'll learn to structure test suites, interact with web elements, handle asynchronous operations, and validate application behavior across multiple browsers. Perfect for developers looking to implement reliable testing strategies in their projects.

Playwright enables you to write end-to-end tests by using its test runner to automate browser interactions and validate application behavior. Start by installing Playwright, then create test files that use the `test()` function to define test cases. Within each test, use Playwright's APIs to navigate pages, interact with elements using locators, and make assertions. Playwright's auto-wait feature automatically waits for elements to be actionable before interacting with them, reducing flakiness. Structure your tests with clear setup and teardown phases, and organize related tests into describe blocks for better maintainability.

AI-generated summary based on this skill's SKILL.md

62 18 MITupdated by bobmatnyc

Decision gist · record as of 2026-07-18

Playwright enables you to write end-to-end tests by using its test runner to automate browser interactions and validate application behavior. Start by installing Playwright, then create test files that use the `test()` function to define test cases. Within each test, use Playwright's APIs to navigate pages, interact with elements using locators, and make assertions. Playwright's auto-wait feature automatically waits for elements to be actionable before interacting with them, reducing flakiness. Structure your tests with clear setup and teardown phases, and organize related tests into describe blocks for better maintainability.

manual: git clone https://github.com/bobmatnyc/claude-mpm-skills → cp -r claude-mpm-skills/toolchains/javascript/testing/playwright ~/.claude/skills/playwright
toolchains/javascript/testing/playwright/SKILL.md · version 488bd686

Use it when

  • Playwright supports cross-browser testing across Chromium, Firefox, and WebKit out of the box.
  • Playwright recommends using resilient locators that target user-visible attributes rather than implementation details—prefer role-based.

Verify before relying

Read SKILL.md below before installing (2 files). Open directory: indexed for reading, not audited.

Same gist for agents: .md · .json

Install

bobmatnyc/claude-mpm-skills/playwright · repository language: Python

Open directory. Skills are indexed for reading, not audited. Review a skill's body before installing it.

Frequently asked questions

AI-generated answers based on this skill's SKILL.md and metadata

How do I write Playwright tests for end-to-end testing?

Playwright enables you to write end-to-end tests by using its test runner to automate browser interactions and validate application behavior. Start by installing Playwright, then create test files that use the `test()` function to define test cases. Within each test, use Playwright's APIs to navigate pages, interact with elements using locators, and make assertions. Playwright's auto-wait feature automatically waits for elements to be actionable before interacting with them, reducing flakiness. Structure your tests with clear setup and teardown phases, and organize related tests into describe blocks for better maintainability.

What is the best way to set up Playwright for cross-browser testing and automation?

Playwright supports cross-browser testing across Chromium, Firefox, and WebKit out of the box. To set it up, install Playwright and run `npx playwright install` to download the browser binaries. Configure your `playwright.config.js` file to specify which browsers to test against, set viewport sizes, and define base URLs. Use the `@playwright/test` package's built-in test runner, which handles browser lifecycle management automatically. You can run tests against all browsers in parallel or sequentially, and Playwright's configuration allows you to define device-specific settings for mobile testing as well.

What are Playwright best practices for locators, page objects, and test organization?

Playwright recommends using resilient locators that target user-visible attributes rather than implementation details—prefer role-based locators like `getByRole()` and `getByLabel()` over CSS selectors when possible. Implement the page object model pattern by creating classes that encapsulate page elements and actions, making tests more readable and maintainable. Organize your test files by feature or user journey, use fixtures to share setup logic across tests, and leverage custom fixtures for complex scenarios. Keep tests focused on a single user action or assertion, and use descriptive test names that explain what behavior is being validated.

How can I debug failing Playwright tests using UI mode, traces, and screenshots?

Playwright provides multiple debugging tools to diagnose test failures. Use UI mode by running `npx playwright test --ui` to step through tests interactively, inspect the DOM, and see network activity in real time. Enable trace recording in your config to capture detailed execution logs, and use `page.screenshot()` to capture visual snapshots at key points in your tests. When tests fail, Playwright automatically generates screenshots and traces in the test results folder. The trace viewer allows you to inspect every action, network request, and console message, making it easier to identify the root cause of failures.

How do I integrate Playwright tests into CI/CD pipelines?

Playwright is designed for CI/CD integration and works seamlessly with GitHub Actions, GitLab CI, Jenkins, and other platforms. Install Playwright in your CI environment and run tests using `npx playwright test`. Configure your pipeline to use the `--reporter=html` flag to generate an HTML report, and optionally upload test artifacts like traces and screenshots for post-failure analysis. Playwright's parallel execution speeds up test runs, and you can configure sharding to distribute tests across multiple CI workers. Most CI platforms provide pre-built Playwright actions or Docker images to simplify setup and ensure consistent test environments.

What authentication patterns does Playwright support for testing authenticated applications?

Playwright supports multiple authentication patterns to test protected features without repeatedly logging in. Use the `storageState` feature to save and reuse authenticated sessions across tests, reducing test execution time. Implement shared authentication fixtures that log in once and share the session with multiple tests. For API-based authentication, call your login endpoint directly before launching the browser, then inject the authentication token into page context. Playwright also supports intercepting network requests to mock authentication responses, and you can use `page.goto()` with pre-set cookies or headers for scenarios where session persistence is needed.

SKILL.md

Rendered from the published skill. Quoted content, verbatim.

Playwright E2E Testing Skill


progressive_disclosure: entry_point: summary: "Modern E2E testing framework with cross-browser automation and built-in test runner" when_to_use: - "When testing web applications end-to-end" - "When needing cross-browser testing" - "When testing user flows and interactions" - "When needing screenshot/video recording" quick_start: - "npm init playwright@latest" - "Choose TypeScript and test location" - "npx playwright test" - "npx playwright show-report" token_estimate: entry:

(truncated - see the full file via the links below)

File tree — 2 files
toolchains/javascript/testing/playwright/SKILL.md
toolchains/javascript/testing/playwright/metadata.json

Let your AI agent find skills like this

Example. Real query, live index.

You found this page by searching. An agent finds it by wishing: SkillFed indexes 56,283 agent skills by what they can do, searchable in plain language.

wish › “Learn how to write and structure end-to-end tests using Playwright”

Give your agent the search over MCP, or paste the wish link into any chat. No install? Search from any chat →

Related skills

Playwright E2e Testing
by activepieces · activepieces/activepieces

Automate web application testing by integrating Playwright into your workflow automation platform. This skill enables you to define, execute, and manage end-to-end browser tests across multiple environments, helping teams catch regressions and validate user interactions programmatically.

no license declared → metadata onlyupdated Jul 2026
★ 23,447repo stars
login-flows
by andrewyng · andrewyng/context-hub

This skill provides battle-tested login automation patterns designed for Playwright end-to-end tests. Access curated code examples and authentication strategies that reduce hallucination and improve test reliability across sessions. Contribute and benefit from community-maintained patterns that evolve with real-world testing needs.

MITupdated May 2026
★ 13,862repo stars
Playwright Patterns
by ed3dai · ed3dai/ed3d-plugins

This skill teaches you battle-tested approaches to structuring and scaling Playwright test automation projects. Learn how to write maintainable test code, organize test suites effectively, and apply design patterns that reduce technical debt and improve test reliability across your automation framework.

no license declared → metadata onlyupdated Jun 2026
★ 246repo stars
Playwright Expert
by duck4nh · duck4nh/antigravity-kit

Playwright Expert equips you with practical knowledge for building robust browser automation tests. Explore scripting techniques, execution strategies, and debugging methods to validate web applications across multiple browsers efficiently.

no license declared → metadata onlyupdated Feb 2026
★ 14repo stars
e2e-playwright-testing
by AsyrafHussin · AsyrafHussin/agent-skills

Build robust browser automation tests for web applications with Playwright integration. This skill equips AI agents with the ability to write, execute, and validate end-to-end test scenarios across modern web platforms. Streamline your testing workflows and catch regressions before they reach production.

MITupdated May 2026
★ 58repo stars
playwright-e2e-tester
by curiositech · curiositech/some_claude_skills

This skill streamlines web application testing by generating Playwright test scripts directly within Claude Code. It handles browser automation, assertion logic, and test structure so you can focus on coverage and reliability rather than boilerplate.

MITfor claude-codeupdated Jul 2026
★ 164repo stars

More skills E2e Outside In Test Generator (unlicensed) · playwright (Apache-2.0) · playwright-e2e-testing (MIT) · playwright-e2e (MIT) · qa/e2e-playwright (MIT) · frontend-testing (MIT) · playwright-testing (MIT) · playwright (MIT)

Tags
browser-automationqa-frameworktest-runnervisual-regressionapi-mockingci-integrationaccessibility-testingcross-platform-testingtest-isolationdebugging-tools