
Playwright Component Testing
OfficialFreeTest React and Vue components in isolation with Playwright.
Free · Opens the source repo
What Playwright Component Testing does
Playwright Component Testing allows developers to test individual components of React and Vue applications using Playwright without the need for a dedicated component-testing runtime. This skill leverages a story gallery approach, enabling you to scaffold stories and create a gallery development page that is driven by the built-in mount fixture. This means you can focus on testing your components in isolation directly within the context of your application, making it easier to validate their behavior and interactions.
The core concept revolves around creating 'stories' that serve as specific scenarios for your components. Each story is a small wrapper that embeds the component under test with hard-coded props, mock data, and callbacks. These stories are organized in *.story.tsx files, and the gallery page you implement exposes functions to mount and unmount these stories dynamically. This setup allows for a seamless integration of component testing into your existing workflow without requiring additional test runners or bundlers.
This skill is particularly beneficial for teams working with React or Vue who want to ensure their components behave as expected in various scenarios. It simplifies the testing process by allowing you to define component states directly within the story, which also serves as documentation. Developers can quickly write tests that assert on the observable outcomes of component interactions, leveraging Playwright's powerful testing capabilities.
Overall, Playwright Component Testing is designed for developers looking to enhance their testing strategy by incorporating component-level tests into their existing Playwright setup. It streamlines the process of validating component functionality and improves the overall quality of the application by ensuring that components work as intended in isolation.
When to use it
Use this skill when you want to test individual components of your React or Vue applications using Playwright without additional setup for a component-testing environment.
When not to use it
This skill may not be suitable if you require a dedicated component-testing framework or if your project does not use React or Vue.
What you can build with it
Testing a Button Component
Create a story for a button component that defines its various states (e.g., default, disabled) and test its interactions.
Validating Form Components
Set up stories for form components to test how they behave with different input values and submission scenarios.
Migrating from Experimental Runtimes
Use this skill to transition from @playwright/experimental-ct-react or -vue to a more stable component testing approach.
How to install Playwright Component Testing
View source1. Install with the skills CLI
npx skills add microsoft/playwright/playwright-component-testing --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by microsoftComponent Testing with Playwright
Test components with regular Playwright e2e tests against a small story gallery page hosted by the app's own dev server. No extra test runner, bundler integration or npm packages are required.
Concept
- A story is a tiny wrapper component that embeds the component under test in one specific scenario: hard-coded props, mock data, providers, recorded callbacks. Stories live next to the component in
*.story.tsx(or.ts/.jsx/.js/.vue) files; each named export is one story. - The gallery is a single page you implement to
references/gallery-spec.md: it exposeswindow.mount(params)/window.unmount()that render a story — resolved from your story files (e.g. withimport.meta.glob) — into#root. It is framework-specific and yours to own — there is no template to copy for it. - Tests are plain Playwright tests. The built-in
mount(storyId, props?)fixture (from@playwright/test) drives the gallery'swindow.mountand returns aLocatorfor the gallery root (#root). Scope the queries from there —component.getByRole('button').click(), notcomponent.click(). Nothing to scaffold for it.
Everything the component needs must be set up inside the story (it runs in the browser); everything the test asserts must be observable through the page (DOM, URL, network). Where the component takes callbacks, the story creates the state, provides the callbacks and records the state into a hidden form for the test to assert on. mount(id, props) passes plain serializable props to the story.
Setup workflow
-
Detect the framework and bundler. React vs Vue decides the framework notes and example story to follow. Then:
- App runs on Vite (has
vite.config.*): the gallery is served by the existing dev server at/playwright/gallery/index.html— Vite serves any.htmlfile under the project root, the app's plugins/aliases/CSS apply automatically, andvite buildignores it. No extra server needed. - Anything else (Next.js, webpack, no dev server): run a small standalone dev server (e.g. Vite) that serves the gallery page, and point
baseURLat it. Requiresviteand the framework plugin as devDependencies.
- App runs on Vite (has
-
Implement the gallery to
references/gallery-spec.md: a page at<project>/playwright/gallery/that renders the requested story into#root. Start from the worked example in the spec and the framework notes inreferences/react.md/references/vue.md. Keep story discovery (import.meta.glob) and the framework mount here — this is the only framework-specific glue, so keep it small. Import the app's global CSS the same way the app's own entry does. -
Configure Playwright — add to
playwright.config.ts:projects: [ { name: 'components', testDir: './tests/components', use: { ...devices['Desktop Chrome'], baseURL: 'http://localhost:5173/playwright/gallery/index.html', serviceWorkers: 'block', reuseContext: true }, }, ], webServer: { command: 'npm run dev', // or: npx vite --config playwright/vite.config.ts url: 'http://localhost:5173/playwright/gallery/index.html', // standalone server: http://localhost:3100/playwright/gallery/index.html reuseExistingServer: !process.env.CI, },Match the port to the dev server.
mountnavigates tobaseURL, so setbaseURLto the gallery's URL.serviceWorkers: 'block'keeps the app's own service worker from serving cached responses that would shadow yourpage.route()mocks.reuseContext: truereuses the browser context across tests in a worker (as the old component-testing runtime did) — a large speedup for component suites. If the config already has projects/webServer, merge instead of replacing. -
Write a first story next to an existing component, modeled on
templates/<react|vue>/Button.story.*. -
Write a first spec, modeled on
templates/react/button.spec.ts, importingtest/expectfrom@playwright/test. -
Run:
npx playwright test --project=components. Openhttp://localhost:5173/playwright/gallery/index.htmlin a browser to eyeball all stories.
Conventions
- Story id: path under
src/without the.story.*extension, plus the export name —src/components/Button.story.tsxexportPrimary→components/Button/Primary. Any unique suffix works too:mount('Button/Primary'). A.story.vuesingle-file component is one story, addressable by its path alone (itsdefaultexport). - One export per scenario. Prefer a new story export over parameterizing an existing one — stories are greppable, reviewable documentation of component states.
Testing patterns
Examples are React; the Vue equivalents differ only in story syntax.
Callbacks and events
The story owns the state and provides the callbacks. Where the component takes callbacks, create the state inside the story, wire the callbacks to it, and record the state into a hidden form next to the component. Tests perform operations and assert on the recorded values:
export const Stateful = () => {
const [expanded, setExpanded] = useState(false);
return <>
<Expandable expanded={expanded} setExpanded={setExpanded} title="Title">Details</Expandable>
<form hidden><input data-testid="expanded" readOnly value={String(expanded)} /></form>
</>;
};
test('click should expand', async ({ mount }) => {
const component = await mount('components/Expandable/Stateful');
await component.locator('.codicon-chevron-right').click();
await expect(component.getByTestId('expanded')).toHaveValue('true');
});
This keeps the whole scenario in the browser: no callback marshalling, the story doubles as documentation, and the recorded state is visible when eyeballing the gallery. Record each observed value in its own data-testid input (String(...) or JSON.stringify(...) for payloads) and assert with toHaveValue() — a web-first assertion that retries until the state lands. The negative direction works the same way: perform the operation, then assert the value did not change.
Per-test props
When a scenario is genuinely parametric (e.g. a boundary-value sweep), pass props as the second argument to mount; the gallery hands them to the story as its props. Keep props to plain serializable data — callbacks belong inside the story.
export const WithTitle = ({ title = 'Default' }: { title?: string }) =>
<Button title={title} />;
const component = await mount('components/Button/WithTitle', { title: 'Hello' });
mount is generic over the story: pass the story type as a template argument to type-check the props (and update()):
import type { WithTitle } from './Button.story';
const component = await mount<typeof WithTitle>('components/Button/WithTitle', { title: 'Hello' });
This works for React and Vue stories alike; Vue stories must additionally declare the props at runtime — see the Typed props sections in references/react.md / references/vue.md.
Prop transitions with update()
To test how a component reacts to a prop change without remounting (state preserved), call component.update(newProps) — it re-renders the same story with new props on the existing root:
const component = await mount('components/Counter/Default', { value: 1 });
await expect(component.getByTestId('value')).toHaveText('1');
await component.update({ value: 2 });
await expect(component.getByTestId('value')).toHaveText('2');
This requires the gallery to reuse its root/instance (references/gallery-spec.md); state survives as long as the story stays the same.
Multiple states in one test
Each mount() navigates fresh, so tests are fully isolated and mounting several stories in one test is cheap:
await expect(await mount('Button/Primary')).toHaveScreenshot('primary.png');
await expect(await mount('Button/Disabled')).toHaveScreenshot('disabled.png');
For visual comparison, screenshot the returned root locator (as above), not the page, to avoid asserting on browser chrome.
Network mocking
Use page.route() as usual — register routes before mount(), since mounting navigates. serviceWorkers: 'block' (set in the config above) keeps the app's own service worker from serving cached responses that shadow the routes. Teams with MSW handler libraries can start the worker inside a story or decorator instead.
Debugging stories
Open your gallery URL (baseURL) in a browser and call await window.mount({ story: 'components/Button/Primary' }) from the devtools console — that is exactly what the mount fixture does. An unknown story rejects window.mount, which surfaces as the test's mount() throwing with a real stack. To browse without the console, give your gallery an optional index page.
Decision points
- Monorepos / non-
srclayouts: change the glob and the id derivation in your gallery (references/gallery-spec.md) to match. - Global providers (theme, i18n, store, router): create a shared
decoratorhelper next to the gallery and wrap components in stories; seereferences/react.md/references/vue.md.
References
references/gallery-spec.md— the gallery endpoint contract to implement (start here).references/react.md— React walkthrough: providers, StrictMode, CSS.references/vue.md— Vue walkthrough:.story.tsand.story.vuestories, plugins.references/migration.md— migrating off@playwright/experimental-ct-react/-vue.
Frequently asked questions about Playwright Component Testing
Similar skills
Fluent UI Blazor
Integrate Fluent UI components in Blazor applications effortlessly.
Build MCP App
Create interactive UI widgets for MCP servers.
Web Design Reviewer
Identify and fix design issues in websites efficiently.
Markstream Install
Seamlessly integrate Markstream for Markdown rendering.
GSAP & Framer Scroll Animation
Create advanced scroll animations effortlessly.
Zoom Video SDK UI Toolkit
Prebuilt UI for Zoom video conferencing in web apps.
