playwright
Installation
SKILL.md
Playwright Browser Automation
TypeScript/JavaScript patterns for E2E testing and web scraping.
Quick Reference
E2E Test
import { test, expect } from '@playwright/test';
test('should work', async ({ page }) => {
await page.goto('/');
await page.getByRole('button', { name: 'Submit' }).click();
await expect(page.getByText('Success')).toBeVisible();
});