$npx skillfedfor your agent

e2e-test-builder

e2e-test-builder equips you to design and deploy automated browser tests that validate your application's most important user journeys. This skill streamlines test configuration, helping you catch regressions early and maintain confidence in production deployments.

e2e-test-builder provides a structured approach to authoring Playwright tests that validate critical user flows. You'll learn to set up test files, navigate pages, interact with elements, and assert outcomes. The skill covers test organization, fixture management, and execution configuration so your tests are reliable and maintainable from the start.

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

52 8 MITupdated by patricio0312rev

Decision gist · record as of 2026-01-12

e2e-test-builder provides a structured approach to authoring Playwright tests that validate critical user flows. You'll learn to set up test files, navigate pages, interact with elements, and assert outcomes. The skill covers test organization, fixture management, and execution configuration so your tests are reliable and maintainable from the start.

manual: git clone https://github.com/patricio0312rev/skills → cp -r skills/testing/e2e-test-builder ~/.claude/skills/e2e-test-builder
testing/e2e-test-builder/SKILL.md · version 872cac54

Use it when

  • e2e-test-builder teaches the page object model pattern, which encapsulates page elements and actions into reusable classes.
  • e2e-test-builder guides you through test setup and configuration, covering project initialization, browser configuration.

Verify before relying

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

Same gist for agents: .md · .json

Install

patricio0312rev/skills/e2e-test-builder

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 end-to-end tests with Playwright using e2e-test-builder?

e2e-test-builder provides a structured approach to authoring Playwright tests that validate critical user flows. You'll learn to set up test files, navigate pages, interact with elements, and assert outcomes. The skill covers test organization, fixture management, and execution configuration so your tests are reliable and maintainable from the start.

What is the page object model and how does e2e-test-builder help implement it?

e2e-test-builder teaches the page object model pattern, which encapsulates page elements and actions into reusable classes. This approach separates test logic from UI selectors, making tests more maintainable when your application changes. The skill includes selector strategies and best practices for building robust page objects that scale across your test suite.

How can e2e-test-builder help me set up and configure end-to-end tests?

e2e-test-builder guides you through test setup and configuration, covering project initialization, browser configuration, and test runner options. You'll learn to configure test timeouts, retry logic, and reporting. The skill also addresses mobile and cross-browser execution setup, enabling you to run tests across different viewports and browsers to ensure broad compatibility.

What selector strategies does e2e-test-builder recommend for reliable tests?

e2e-test-builder emphasizes selector strategies that remain stable as your UI evolves. The skill covers role-based selectors, data-testid attributes, and other resilient approaches that reduce flakiness. You'll learn when to use each strategy and how to avoid brittle selectors that break with minor layout changes, ensuring your tests stay maintainable over time.

How does e2e-test-builder support test data management and visual regression testing?

e2e-test-builder covers test data management techniques including fixtures, factories, and database seeding to ensure consistent test conditions. The skill also introduces visual regression testing, allowing you to capture and compare screenshots across test runs. These practices help you validate both functional behavior and visual consistency in your critical user flows.

Can e2e-test-builder help me automate checkout flow testing and other complex user journeys?

e2e-test-builder is designed to help you build and validate complex user flows like checkout processes. The skill teaches you to chain interactions, manage test state, and verify multi-step workflows. You'll learn techniques for handling dynamic content, network mocking, and data validation that are essential for automating critical business flows with confidence.

SKILL.md

Rendered from the published skill. Quoted content, verbatim.

E2E Test Builder

Build reliable end-to-end tests for critical user flows.

Playwright Test Setup

```typescript // playwright.config.ts import { defineConfig } from "@playwright/test";

export default defineConfig({ testDir: "./e2e", fullyParallel: true, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: process.env.CI ? 1 : undefined, reporter: "html", use: { baseURL: "http://localhost:3000", trace: "on-first-retry", screenshot: "only-on-failure", }, projects: [ { name: "chromium", use: { ...devices["Desktop Chrome"] }, }, { name: "firefox", use: { ...devices["Desktop Firefox"] }, }, { name: "webkit", use: { ...devices["Desktop Safari"] }, }, { name: "Mobile Chrome", use: { ...devices["Pixel 5"] }, }, ], webServer: { command: "npm run dev",

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

File tree — 1 file
testing/e2e-test-builder/SKILL.md

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 › “Build and configure end-to-end browser tests for critical user flows”

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

Related skills

webapp-testing
by Pixel-Process-UG · Pixel-Process-UG/superkit-agents

This skill equips you with a complete testing framework for web applications, leveraging Playwright to automate browser interactions and validate functionality across your stack. Quickly scaffold test scenarios, run assertions, and catch regressions before they reach production.

MITupdated Mar 2026
★ 1repo stars
playwright-testing
by alinaqi · alinaqi/maggy

This skill equips you to construct comprehensive end-to-end tests leveraging Playwright's capabilities alongside proven page object design patterns. Learn to organize test suites that remain maintainable as your application evolves, incorporating best practices that reduce flakiness and improve test reliability across your automation efforts.

MITupdated Jul 2026
★ 703repo stars
e2e-testing-patterns
by HermeticOrmus · HermeticOrmus/LibreUIUX-Claude-Code

This skill teaches you how to architect and implement end-to-end tests using industry-standard frameworks like Playwright and Cypress. You'll discover proven patterns for organizing test code, handling asynchronous operations, and maintaining test reliability as your application grows. Gain practical knowledge for building test suites that catch real-world issues before they reach production.

MITupdated May 2026
★ 86repo stars
qa/e2e-playwright
by echoVic · echoVic/boss-skill

This skill equips you with Playwright, a powerful framework for automating browser-based testing across multiple platforms. Deploy comprehensive end-to-end test suites that validate your web application's functionality, user interactions, and cross-browser compatibility with minimal configuration overhead.

MITdocs in Chineseupdated Jul 2026
★ 555repo stars
E2e Outside In Test Generator
by rysweet · rysweet/amplihack

This skill leverages Claude Code to automatically generate end-to-end tests following outside-in principles, where test design begins from user-facing scenarios and works inward through system layers. It streamlines test creation by translating application requirements into executable test cases that verify complete user journeys.

no license declared → metadata onlyfor claude-codeupdated Jul 2026
★ 68repo stars
e2e-tester
by PageAI-Pro · PageAI-Pro/ralph-loop

e2e-tester equips you with patterns and practices for writing robust Playwright end-to-end tests organized through the Page Object Model approach. Learn how to structure test suites that remain maintainable as your application grows, separating test logic from UI interactions for cleaner, more reliable automation.

MITupdated Jun 2026
★ 285repo stars

More skills playwright-e2e-testing (MIT) · Playwright E2e Testing (NOASSERTION) · playwright (Apache-2.0) · playwright (MIT) · prowler-test-ui (Apache-2.0)

Tags
browser-automationtest-frameworkqa-engineeringui-testingflow-validationcross-browser-testingtest-maintenanceregression-detection