webapp-testing

Installation
SKILL.md

Web App Testing with Playwright

Setup

npm init playwright@latest

Basic Test Structure

import { test, expect } from '@playwright/test';

test('homepage has title', async ({ page }) => {
  await page.goto('http://localhost:3000');
  await expect(page).toHaveTitle(/My App/);
});
Related skills
Installs
8
GitHub Stars
1.0K
First Seen
Mar 13, 2026