playwright-auth-state
Playwright workflows for authenticated browser state reuse through storageState and setup projects.
Diagnostic Playwright workflows for flaky or failing tests, including trace analysis, UI mode, and state isolation.
$ npx -y skills add hzijad/playwright-agent-skills --skill playwright-debugging --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/playwright-debuggingContext preview
The summary Claude sees to decide when to auto-load this skill.
Diagnostic Playwright workflows for flaky or failing tests, including trace analysis, UI mode, and state isolation.
name: playwright-debugging description: Diagnostic Playwright workflows for flaky or failing tests, including trace analysis, UI mode, and state isolation.
Use this skill when a Playwright test fails intermittently, behaves differently in CI, or passes locally but not in a repeatable way. The goal is to identify the specific cause of the failure before changing the test.
Use this skill as the first stop for failures. It is not a rewrite guide and it is not a replacement for `playwright-core` when the test still needs normal authoring discipline.
This skill focuses on four common failure classes: timing and readiness issues, state bleed between tests, hydration or rendering gaps in SPA frameworks, and flakiness that only appears under CI's specific constraints.
Do not use this skill to redesign a test from scratch unless the current test is beyond repair or the user explicitly asks for a rewrite.
Start with evidence. Use the failing error, the trace viewer, or the exact step that failed before choosing a fix.
1. Capture the terminal error or the trace step that failed. 2. Decide whether the failure is caused by timing, state bleed, hydration, or a CI-only constraint. 3. Fix the narrowest failing line first. 4. Verify the fix with a repeatable run, not a single green pass.
If the failing step is ambiguous, inspect the trace before editing. Do not generalize from one red run.
The UI is present, but the app is not ready for interaction yet. In this case, wait for the state the user would observe, not for an arbitrary timer.
Use web-first assertions, actionability checks, or a specific network response instead of `waitForTimeout()`.
import { test, expect } from '@playwright/test';
test('submits the form after the data load completes', async ({ page }) => {
const responsePromise = page.waitForResponse('**/api/v1/data-load');
await page.goto('/dashboard');
await responsePromise;
await expect(page.getByRole('button', { name: 'Submit' })).toBeEnabled();
await page.getByRole('button', { name: 'Submit' }).click();
});The test depends on data that another test created or failed to clean up. Make the test self-contained by setting up its own data, storage state, or API state.
Prefer test-local setup over cross-test ordering. If the state comes from login, use a saved storage state. If it comes from application data, create it within the test or through a setup step.
The DOM appears before event handlers or framework state are attached. Wait for the interactive signal, not just the presence of elements.
This often shows up in React, Next.js, or other SPA frameworks when text is visible before a button is actually usable.
A test that is stable locally but flaky only in CI is not the same problem as timing, state bleed, or hydration on their own — it usually means a fix that works on a single local run doesn't hold up under CI's actual constraints: parallel workers competing for resources, shared services under load, and machines slower than a dev laptop.
Do not assume a local pass means the underlying fix is complete. Before closing out a CI-only flake, check for:
row, or rate-limited endpoint at once. Isolate per-worker state (for example, keying test data off `test.info().workerIndex`) instead of tightening a timeout.
local hardware, not only less predictable. A wait tied to a real condition (assertion, response, URL) survives this; a hardcoded timeout tuned on a local machine does not.
differ between a local `.env` and CI secrets. Confirm the test isn't passing locally only because of state that doesn't exist in CI.
flake behind a "passed on retry" result. Treat a test that only passes on retry as still broken, not resolved.
Reproduce the CI failure mode locally under real constraints instead of guessing:
npx playwright test --workers=4 --repeat-each=10
If the failure only reproduces under load or parallelism, the fix belongs in resource isolation or wait strategy, not in a longer timeout.
If the symptom points to app state rather than locator choice, confirm whether the test needs a setup project, a route
Playwright test patterns that avoid the mistakes agents make by default. Playwright Agent Skills is a small, opinionated set of reusable prompts for writing and reviewing Playwright tests.
Repo: hzijad/playwright-agent-skills
Playwright workflows for authenticated browser state reuse through storageState and setup projects.
Conducts rigorous authoring and review of Playwright E2E tests. Enforces accessibility-first locators, web-first assertions, strict isolation, and DAMP…
Playwright workflows for deterministic third-party responses using page.route().