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/);
});
Installs
155
GitHub Stars
1.1K
First Seen
Jan 20, 2026
webapp-testing — skillcreatorai/ai-agent-skills