playwright

Installation
SKILL.md

Playwright E2E Testing Guidelines

1. Project Setup

  • Config: e2e/playwright.config.ts
  • Tests: e2e/tests/
  • Run: cd e2e && npx playwright test
  • Single project: chromium only
  • Timeouts: 60s test, 15s expect

2. Custom Fixtures

Extend base test with typed fixtures for multi-browser scenarios:

import { test as base, expect, type Page } from "@playwright/test";
Related skills
Installs
1
GitHub Stars
195
First Seen
Apr 11, 2026