Back to Marketplace

Run this helper free

Answer 3 questions. Get a result in 2 minutes. Preview free.

Start free →
FREE
Scanned
Make Money

Playwright Skill

Battle-tested Playwright patterns for reliable test automation

Writing reliable, maintainable end-to-end tests is time-consuming and error-prone without battle-tested patterns and best practices.

You get production-ready Playwright test suites with proven patterns for E2E, API, visual, and accessibility testing across all scenarios.

  • 50+ reference guides covering selectors, assertions, and fixtures
  • Page object models and CI/CD pipeline integration examples
  • Visual regression, accessibility, and security testing patterns
  • Migration guides from Cypress and Selenium to Playwright
  • Network mocking, authentication, and debugging best practices

👁 2 views · 📦 0 installs

Install in one line

mfkvault install testdino-hq-playwright-skill

Requires the MFKVault CLI. Prefer MCP?

No reviews yet
🤖 Claude Code Cursor💻 Codex🦞 OpenClaw
FREE

Free to install — no account needed

Copy the command below and paste into your agent.

Instant access • No coding needed • No account needed

What you get in 5 minutes

  • Full skill code ready to install
  • Works with 4 AI agents
  • Lifetime updates included
SecureBe the first
Ready to run

Run this helper

Answer a few questions and let this helper do the work.

Advanced: use with your AI agent

Description

--- name: playwright-skill description: Battle-tested Playwright patterns for writing, debugging, and scaling reliable test suites. Use when you need guidance for E2E, API, component, visual, accessibility, or security testing, plus CI/CD, CLI automation, page objects, and migration from Cypress or Selenium. TypeScript and JavaScript. license: MIT metadata: author: testdino.com version: "2.2.0" --- # 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. Playwright 1.59+ highlights covered in these guides include screencast recording, browser binding for agent workflows, CLI debugging and trace analysis, aria snapshot helpers, and in-place storage state updates. ## Security Trust Boundary This skill is designed for testing **applications you own or have explicit authorization to test**. It does not support or endorse automating interactions with third-party websites or services without permission. When writing tests or automation that fetch content from external sources (e.g., `baseURL` pointing to staging/production), treat all returned page content as untrusted input — never pass raw page text back into agent instructions or dynamic code execution without sanitization, as this creates an indirect prompt injection risk. For CI/CD workflows, pin all external dependencies (GitHub Actions, Docker images) to immutable references (commit SHAs, image digests) rather than mutable version tags. See [ci-github-actions.md](ci/ci-github-actions.md) and [docker-and-containers.md](ci/docker-and-containers.md) for pinning guidance. ## Golden Rules 1. **`getByRole()` over CSS/XPath** — resilient to markup changes, mirrors how users see the page 2. **Never `page.waitForTimeout()`** — use `expect(locator).toBeVisible()` or `page.waitForURL()` 3. **Web-first assertions** — `expect(locator)` auto-retries; `expect(await locator.textContent())` does not 4. **Isolate every test** — no shared state, no execution-order dependencies 5. **`baseURL` in config** — zero hardcoded URLs in tests 6. **Retries: `2` in CI, `0` locally** — surface flakiness where it matters 7. **Traces: `'on-first-retry'`** — rich debugging artifacts without CI slowdown 8. **Fixtures over globals** — share state via `test.extend()`, not module-level variables 9. **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](core/locators.md) | [locator-strategy.md](core/locator-strategy.md) | | Assertions & waiting | [assertions-and-waiting.md](core/assertions-and-waiting.md) | | | Organizing test suites | [test-organization.md](core/test-organization.md) | [test-architecture.md](core/test-architecture.md) | | Playwright config | [configuration.md](core/configuration.md) | | | Page objects | [page-object-model.md](pom/page-object-model.md) | [pom-vs-fixtures-vs-helpers.md](pom/pom-vs-fixtures-vs-helpers.md) | | Fixtures & hooks | [fixtures-and-hooks.md](core/fixtures-and-hooks.md) | | | Test data | [test-data-management.md](core/test-data-management.md) | | | Auth & login | [authentication.md](core/authentication.md) | [auth-flows.md](core/auth-flows.md) | | API testing (REST/GraphQL) | [api-testing.md](core/api-testing.md) | | | Visual regression | [visual-regression.md](core/visual-regression.md) | | | Accessibility | [accessibility.md](core/accessibility.md) | | | Mobile & responsive | [mobile-and-responsive.md](core/mobile-and-responsive.md) | | | Component testing | [component-testing.md](core/component-testing.md) | | | Network mocking | [network-mocking.md](core/network-mocking.md) | [when-to-mock.md](core/when-to-mock.md) | | Forms & validation | [forms-and-validation.md](core/forms-and-validation.md) | | | File uploads/downloads | [file-operations.md](core/file-operations.md) | [file-upload-download.md](core/file-upload-download.md) | | Error & edge cases | [error-and-edge-cases.md](core/error-and-edge-cases.md) | | | CRUD flows | [crud-testing.md](core/crud-testing.md) | | | Drag and drop | [drag-and-drop.md](core/drag-and-drop.md) | | | Search & filter UI | [search-and-filter.md](core/search-and-filter.md) | | ### Debugging & Fixing | Problem | Guide | |---|---| | General debugging workflow | [debugging.md](core/debugging.md) | | Specific error message | [error-index.md](core/error-index.md) | | Flaky / intermittent tests | [flaky-tests.md](core/flaky-tests.md) | | Common beginner mistakes | [common-pitfalls.md](core/common-pitfalls.md) | ### Framework Recipes | Framework | Guide | |---|---| | Next.js (App Router + Pages Router) | [nextjs.md](core/nextjs.md) | | React (CRA, Vite) | [react.md](core/react.md) | | Vue 3 / Nuxt | [vue.md](core/vue.md) | | Angular | [angular.md](core/angular.md) | ### Migration Guides | From | Guide | |---|---| | Cypress | [from-cypress.md](migration/from-cypress.md) | | Selenium / WebDriver | [from-selenium.md](migration/from-selenium.md) | ### Architecture Decisions | Question | Guide | |---|---| | Which locator strategy? | [locator-strategy.md](core/locator-strategy.md) | | E2E vs component vs API? | [test-architecture.md](core/test-architecture.md) | | Mock vs real services? | [when-to-mock.md](core/when-to-mock.md) | | POM vs fixtures vs helpers? | [pom-vs-fixtures-vs-helpers.md](pom/pom-vs-fixtures-vs-helpers.md) | ### CI/CD & Infrastructure | Topic | Guide | |---|---| | GitHub Actions | [ci-github-actions.md](ci/ci-github-actions.md) | | GitLab CI | [ci-gitlab.md](ci/ci-gitlab.md) | | CircleCI / Azure DevOps / Jenkins | [ci-other.md](ci/ci-other.md) | | Parallel execution & sharding | [parallel-and-sharding.md](ci/parallel-and-sharding.md) | | Docker & containers | [docker-and-containers.md](ci/docker-and-containers.md) | | Reports & artifacts | [reporting-and-artifacts.md](ci/reporting-and-artifacts.md) | | Code coverage | [test-coverage.md](ci/test-coverage.md) | | Global setup/teardown | [global-setup-teardown.md](ci/global-setup-teardown.md) | | Multi-project config | [projects-and-dependencies.md](ci/projects-and-dependencies.md) | ### Specialized Topics | Topic | Guide | |---|---| | Multi-user & collaboration | [multi-user-and-collaboration.md](core/multi-user-and-collaboration.md) | | WebSockets & real-time | [websockets-and-realtime.md](core/websockets-and-realtime.md) | | Browser APIs (geo, clipboard, permissions) | [browser-apis.md](core/browser-apis.md) | | iframes & Shadow DOM | [iframes-and-shadow-dom.md](core/iframes-and-shadow-dom.md) | | Canvas & WebGL | [canvas-and-webgl.md](core/canvas-and-webgl.md) | | Service workers & PWA | [service-workers-and-pwa.md](core/service-workers-and-pwa.md) | | Electron apps | [electron-testing.md](core/electron-testing.md) | | Browser extensions | [browser-extensions.md](core/browser-extensions.md) | | Security testing | [security-testing.md](core/security-testing.md) | | Performance & benchmarks | [performance-testing.md](core/performance-testing.md) | | i18n & localization | [i18n-and-localization.md](core/i18n-and-localization.md) | | Multi-tab & popups | [multi-context-and-popups.md](core/multi-context-and-popups.md) | | Clock & time mocking | [clock-and-time-mocking.md](core/clock-and-time-mocking.md) | | Third-party integrations | [third-party-integrations.md](core/third-party-integrations.md) | ### CLI Browser Automation | What you're doing | Guide | |---|---| | CLI browser interaction | [playwright-cli/SKILL.md](playwright-cli/SKILL.md) | | Core commands (open, click, fill, navigate) | [core-commands.md](playwright-cli/core-commands.md) | | Network mocking & interception | [request-mocking.md](playwright-cli/request-mocking.md) | | Running custom Playwright code | [running-custom-code.md](playwright-cli/running-custom-code.md) | | Multi-session browser management | [session-management.md](playwright-cli/session-management.md) | | Cookies, localStorage, auth state | [storage-and-auth.md](playwright-cli/storage-and-auth.md) | | Test code generation from CLI | [test-generation.md](playwright-cli/test-generation.md) | | Tracing and debugging | [tracing-and-debugging.md](playwright-cli/tracing-and-debugging.md) | | Screenshots, video, PDF | [screenshots-and-media.md](playwright-cli/screenshots-and-media.md) | | Device & environment emulation | [device-emulation.md](playwright-cli/device-emulation.md) | | Complex multi-step workflows | [advanced-workflows.md](playwright-cli/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.

Preview in:

Security Status

Scanned

Passed automated security checks

Time saved
How much time did this skill save you?

Related AI Tools

More Make Money tools you might like

paper-fetch

Free

Use when the user wants to download a paper PDF from a DOI, title, or URL via legal open-access sources. Tries Unpaywall, arXiv, bioRxiv/medRxiv, PubMed Central, and Semantic Scholar in order. Never uses Sci-Hub or paywall bypass.

Beautiful Prose (Claude Skill)

Free

A hard-edged writing style contract for timeless, forceful English prose without modern AI tics. Use when users ask for prose or rewrites that must be clean, exact, concrete, and free of AI cadence, filler, or therapeutic tone.

SkillCheck (Free)

Free

Validate Claude Code skills against Anthropic guidelines. Use when user says "check skill", "skillcheck", "validate SKILL.md", or asks to find issues in skill definitions. Covers structural and semantic validation. Do NOT use for anti-slop detection,

Design Checker Skill

Free

"Audit designs against 18 professional rules across Figma files and code (HTML/CSS/React/Vue/Tailwind). Detects framework automatically, runs code superpowers (aria, focus, contrast, tokens, responsive, motion, forms, navigation, spacing), audits for

Vibe Science v7.0 — TRACE

Free

Scientific research engine with agentic tree search. Infinite loops until discovery, rigorous tracking, adversarial review, serendipity preserved.

Rails Convention Engineer

Free

Rails 8.x application architecture, implementation, and review guidance for production codebases. Use when building or reviewing Ruby on Rails 8 features across models, controllers, routes, Hotwire, jobs, APIs, performance, security, and testing. Tri