e2e-testing
E2E test architecture and patterns with Playwright. Use when designing test suites, structuring Page Object Models, planning CI sharding strategies, setting up authentication flows, or organizing tests with tags and annotations. Use for test architecture, accessibility auditing with axe-core, network mocking strategies, visual regression workflows, HAR replay, and storageState authentication patterns. For Playwright API details, browser automation, or web scraping, use the playwright skill instead.
What this skill does
# 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
| Pattern | API/Tool | Key Points |
| --------------------- | ----------------------------------------- | -------------------------------------------------- |
| Role-based locators | `getByRole`, `getByText`, `getByLabel` | Preferred over CSS/XPath selectors |
| Page Object Model | Classes in `tests/pages/` | Encapsulate all page-specific locators and actions |
| Authentication | `storageState` + setup projects | Authenticate once, reuse across tests |
| Visual regression | `expect(page).toHaveScreenshot()` | Mask dynamic content to prevent flakes |
| Accessibility audit | `AxeBuilder` from `@axe-core/playwright` | `.withTags()` + `.analyze()` on key flows |
| Trace debugging | `trace: 'on-first-retry'` | Full DOM snapshots, network logs, and timeline |
| Network mocking | `page.route()` | Stable tests without third-party dependencies |
| HAR replay | `page.routeFromHAR()` | High-fidelity mocks from recorded traffic |
| Image blocking | `page.route('**/*.{png,jpg}', abort)` | Speed up tests by skipping images |
| CI sharding | `--shard=1/4` | Split suite across parallel CI machines |
| Blob reports | `--reporter=blob` + `merge-reports` | Merge sharded results into a single report |
| Test tags | `{ tag: ['@smoke'] }` | Filter tests by category with `--grep` |
| Test steps | `test.step('name', async () => {})` | Group actions in trace viewer and reports |
| Changed tests only | `--only-changed=$GITHUB_BASE_REF` | Run only test files changed since base branch |
| Native a11y checks | `toHaveAccessibleName`, `toHaveRole` | Lightweight alternative to full axe-core scans |
| Git info in reports | `captureGitInfo` reporter option | Link test reports to commits for CI debugging |
| Web-first assertions | `expect(element).toBeVisible()` | Auto-wait instead of `waitForTimeout` |
| Fixture composition | `mergeTests()` / `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 tests | `for...of` loop generating `test()` calls | Parameterized tests from arrays or CSV files |
| Context emulation | `browser.newContext()` options | locale, timezone, colorScheme, offline, isMobile |
| Two roles in one test | Concurrent `browser.newContext()` calls | Separate storageState per context |
## Common Mistakes
| Mistake | Correct Pattern |
| -------------------------------------------------------- | ------------------------------------------------------------------------------- |
| Using `page.waitForTimeout()` for element visibility | Use web-first assertions like `expect(element).toBeVisible()` which auto-wait |
| Writing raw locators directly in test files | Encapsulate all selectors in Page Object Model classes |
| Testing third-party APIs (Stripe, Auth0) directly | Mock external services with `page.route()` for stable, fast tests |
| Debugging CI failures with screenshots instead of traces | Configure `trace: 'on-first-retry'` and use Playwright Trace Viewer |
| Sharing state between tests via global variables | Use a fresh `BrowserContext` per test for full isolation |
| Running all tests in a single CI job | Use Playwright sharding (`--shard=1/N`) across parallel machines |
| Using CSS/XPath selectors for element location | Use role-based locators that survive refactors and enforce accessibility |
| Logging in via UI in every test | Use `storageState` with setup projects to authenticate once |
| Using `injectAxe`/`checkA11y` from `axe-playwright` | Use `AxeBuilder` from `@axe-core/playwright` with `.analyze()` |
| Committing `storageState` JSON files to git | Add `playwright/.auth/` to `.gitignore` |
| Relying on `storageState` for sign-out tests | Sign-out invalidates server session — sign in via UI for each sign-out test |
| Assuming `storageState` persists sessionStorage | It only saves cookies + localStorage — use `addInitScript()` for sessionStorage |
| Duplicating test code for locale/currency variants | Use fixture options (`{ option: true }`) with per-project config overrides |
| Creating fixtures without `mergeTests()` for 3+ modules | Use `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](references/locators.md)
- [Page Object Model architecture, fixtures integration, and base page patterns](references/page-objects.md)
- [Fixtures: scoping, composition, auto fixtures, options, and data-driven tests](references/fixtures.md)
- [Authentication with storageState, setup projects, and multi-role testing](references/authentication.md)
- [Network mocking, route interception, HAR replay, and WebSocket mocking](references/mocking.md)
- [Accessibility auditing with AxeBuilder, WCAG tags, and reusable fixtures](references/accessibility.md)
- [Visual regression, snapshot testing, masking, tolerance thresholds, and baseline management](references/visual-testing.md)
- [CI sharding, parallelism, blob reports, and browser caching](references/ci-sharding.md)
- [Test organization with tags, annotations, test.step, and project configuration](references/test-organization.md)
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.