一键导入
playwright-auth-state
Playwright workflows for authenticated browser state reuse through storageState and setup projects.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Playwright workflows for authenticated browser state reuse through storageState and setup projects.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Conducts rigorous authoring and review of Playwright E2E tests. Enforces accessibility-first locators, web-first assertions, strict isolation, and DAMP architecture. Use when generating, refactoring, or reviewing any Playwright test code.
Diagnostic Playwright workflows for flaky or failing tests, including trace analysis, UI mode, and state isolation.
Playwright workflows for deterministic third-party responses using page.route().
基于 SOC 职业分类
| name | playwright-auth-state |
| description | Playwright workflows for authenticated browser state reuse through storageState and setup projects. |
Use this skill when tests need to start in a known logged-in session or with a role-specific browser state instead of repeating the login UI in every spec. It keeps the browser state deterministic without making authentication the focus of the test.
Do not use this skill when the login form itself is the feature under test, or when the app is fully local and does not need shared browser state.
playwright-debugging.Create the authenticated state once in a setup project, then load it in the tests that need it.
// tests/auth.setup.ts
import { test as setup, expect } from '@playwright/test';
setup('authenticate', async ({ page }) => {
await page.goto('/login');
await page.getByLabel('Email').fill('user@example.com');
await page.getByLabel('Password').fill('password123');
await page.getByRole('button', { name: 'Sign in' }).click();
await expect(page.getByRole('button', { name: 'Sign out' })).toBeVisible();
await page.context().storageState({ path: 'playwright/.auth/user.json' });
});
Apply the saved state in configuration:
// playwright.config.ts
import { defineConfig } from '@playwright/test';
export default defineConfig({
projects: [
{
name: 'setup',
testMatch: /.*\.setup\.ts/,
},
{
name: 'chromium',
dependencies: ['setup'],
use: {
storageState: 'playwright/.auth/user.json',
},
},
],
});
If only some tests need the logged-in session, scope the state to a specific project rather than making it global. For multiple roles, keep one state file per role and give each project a clear name.
Treat the generated storage state as a build artifact, not source code. Keep it out of version control unless your project has a specific reason to commit it.
When a suite needs more than one authenticated identity — an admin and a standard user, for example — create one setup test and one storage state file per role, and give each project a name that makes the role obvious at a glance.
// tests/auth.setup.ts
import { test as setup, expect } from '@playwright/test';
setup('authenticate as admin', async ({ page }) => {
await page.goto('/login');
await page.getByLabel('Email').fill('admin@example.com');
await page.getByLabel('Password').fill('adminpass123');
await page.getByRole('button', { name: 'Sign in' }).click();
await expect(page.getByRole('heading', { name: 'Admin Dashboard' })).toBeVisible();
await page.context().storageState({ path: 'playwright/.auth/admin.json' });
});
setup('authenticate as user', async ({ page }) => {
await page.goto('/login');
await page.getByLabel('Email').fill('user@example.com');
await page.getByLabel('Password').fill('password123');
await page.getByRole('button', { name: 'Sign in' }).click();
await expect(page.getByRole('button', { name: 'Sign out' })).toBeVisible();
await page.context().storageState({ path: 'playwright/.auth/user.json' });
});
// playwright.config.ts
import { defineConfig } from '@playwright/test';
export default defineConfig({
projects: [
{ name: 'setup', testMatch: /.*\.setup\.ts/ },
{
name: 'chromium-admin',
dependencies: ['setup'],
testMatch: /.*\.admin\.spec\.ts/,
use: { storageState: 'playwright/.auth/admin.json' },
},
{
name: 'chromium-user',
dependencies: ['setup'],
testMatch: /.*\.user\.spec\.ts/,
use: { storageState: 'playwright/.auth/user.json' },
},
],
});
Route each spec to the project whose role it needs through a file naming convention
such as *.admin.spec.ts and *.user.spec.ts. Keep the matchers explicit so a
project never becomes a catch-all for unrelated specs.
Keep the setup file and the auth state file in a predictable location:
tests/auth.setup.tsplaywright/.auth/user.jsonplaywright.config.tsKeep the setup test focused on creating state, not on exercising the full product flow. The setup project should end as soon as the authenticated signal is visible and the storage state has been written.
Verify the state file was created and loaded correctly.
Typical checks:
npx playwright test --project=setup
npx playwright test tests/dashboard.spec.ts
For debugging, use trace viewer or UI mode to confirm the login state is present in the resulting session.