Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
oakoss avatar

E2e Testing

  • 87 installs
  • 14 repo stars
  • Updated March 2, 2026
  • oakoss/agent-skills

Helps with testing & qa tasks during AI-assisted development.

About

e2e-testing is a Claude Code skill for testing & qa. It helps solo builders move faster with AI-assisted coding.

  • e2e-testing
  • Testing & QA
  • AI-coding skill

E2e Testing by the numbers

  • 87 all-time installs (skills.sh)
  • +4 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #1,049 of 2,153 Testing & QA skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/oakoss/agent-skills --skill e2e-testing

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs87
repo stars14
Last updatedMarch 2, 2026
Repositoryoakoss/agent-skills

What it does

Helps with testing & qa tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

E2E Testing

Overview

Covers E2E test architecture and patterns using Playwright — how to structure test suites, organize tests, and apply proven patterns for authentication, mocking, visual regression, accessibility auditing, and CI parallelism. Focuses on the WHY and WHEN of test patterns rather than Playwright API specifics.

When to use: Designing test suite architecture, structuring Page Object Models, planning CI sharding strategies, setting up authentication flows, organizing tests with tags and annotations, implementing visual regression workflows, mocking network requests, auditing accessibility.

When NOT to use: Unit testing (use Vitest/Jest), API-only testing (use integration tests), component testing in isolation (use component test runners). For Playwright API details, browser automation, scraping, or troubleshooting Playwright errors, use the playwright skill.

Quick Reference

PatternAPI/ToolKey Points
Role-based locatorsgetByRole, getByText, getByLabelPreferred over CSS/XPath selectors
Page Object ModelClasses in tests/pages/Encapsulate all page-specific locators and actions
AuthenticationstorageState + setup projectsAuthenticate once, reuse across tests
Visual regressionexpect(page).toHaveScreenshot()Mask dynamic content to prevent flakes
Accessibility auditAxeBuilder from @axe-core/playwright.withTags() + .analyze() on key flows
Trace debuggingtrace: 'on-first-retry'Full DOM snapshots, network logs, and timeline
Network mockingpage.route()Stable tests without third-party dependencies
HAR replaypage.routeFromHAR()High-fidelity mocks from recorded traffic
Image blockingpage.route('**/*.{png,jpg}', abort)Speed up tests by skipping images
CI sharding--shard=1/4Split suite across parallel CI machines
Blob reports--reporter=blob + merge-reportsMerge sharded results into a single report
Test tags{ tag: ['@smoke'] }Filter tests by category with --grep
Test stepstest.step('name', async () => {})Group actions in trace viewer and reports
Changed tests only--only-changed=$GITHUB_BASE_REFRun only test files changed since base branch
Native a11y checkstoHaveAccessibleName, toHaveRoleLightweight alternative to full axe-core scans
Git info in reportscaptureGitInfo reporter optionLink test reports to commits for CI debugging
Web-first assertionsexpect(element).toBeVisible()Auto-wait instead of waitForTimeout
Fixture compositionmergeTests() / mergeExpects()Combine 3+ fixture modules into one test
Auto fixtures{ auto: true } on test.extend()Run for every test (logging, screenshots)
Fixture options{ option: true } on test.extend()Configurable via config or test.use()
Data-driven testsfor...of loop generating test() callsParameterized tests from arrays or CSV files
Context emulationbrowser.newContext() optionslocale, timezone, colorScheme, offline, isMobile
Two roles in one testConcurrent browser.newContext() callsSeparate storageState per context

Common Mistakes

MistakeCorrect Pattern
Using page.waitForTimeout() for element visibilityUse web-first assertions like expect(element).toBeVisible() which auto-wait
Writing raw locators directly in test filesEncapsulate all selectors in Page Object Model classes
Testing third-party APIs (Stripe, Auth0) directlyMock external services with page.route() for stable, fast tests
Debugging CI failures with screenshots instead of tracesConfigure trace: 'on-first-retry' and use Playwright Trace Viewer
Sharing state between tests via global variablesUse a fresh BrowserContext per test for full isolation
Running all tests in a single CI jobUse Playwright sharding (--shard=1/N) across parallel machines
Using CSS/XPath selectors for element locationUse role-based locators that survive refactors and enforce accessibility
Logging in via UI in every testUse storageState with setup projects to authenticate once
Using injectAxe/checkA11y from axe-playwrightUse AxeBuilder from @axe-core/playwright with .analyze()
Committing storageState JSON files to gitAdd playwright/.auth/ to .gitignore
Relying on storageState for sign-out testsSign-out invalidates server session — sign in via UI for each sign-out test
Assuming storageState persists sessionStorageIt only saves cookies + localStorage — use addInitScript() for sessionStorage
Duplicating test code for locale/currency variantsUse fixture options ({ option: true }) with per-project config overrides
Creating fixtures without mergeTests() for 3+ modulesUse mergeTests() to compose fixture files into a single test export

Delegation

  • Discover which user flows lack E2E coverage: Use Explore agent
  • Build a full Page Object Model test suite for an application: Use Task agent
  • Plan a CI sharding strategy for a large test suite: Use Plan agent
For Playwright API details, browser automation, scraping, stealth mode, screenshots/PDFs, Docker deployment, or troubleshooting Playwright errors, use the playwright skill.

References

  • Role-based locators, auto-waiting, chaining, filtering, and locator strategy
  • Page Object Model architecture, fixtures integration, and base page patterns
  • Fixtures: scoping, composition, auto fixtures, options, and data-driven tests
  • Authentication with storageState, setup projects, and multi-role testing
  • Network mocking, route interception, HAR replay, and WebSocket mocking
  • Accessibility auditing with AxeBuilder, WCAG tags, and reusable fixtures
  • Visual regression, snapshot testing, masking, tolerance thresholds, and baseline management
  • CI sharding, parallelism, blob reports, and browser caching
  • Test organization with tags, annotations, test.step, and project configuration

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.