Logo
Agent Skills
  • Skills
  • Category
  • Publishers
  • Cookbook
  • Blog
Logo
Agent Skills
SkillsDevelopment Toolswebapp-testing
typescript

webapp-testing

by Anthropic•Development Tools

Test local web applications using Playwright for UI verification and debugging

380downloads
42stars
~450tokens

Quick Install

One command to add this skill

Terminal
$ mkdir -p ~/.claude/skills/webapp-testing && curl -L https://raw.githubusercontent.com/anthropics/skills/main/skills/webapp-testing/SKILL.md > ~/.claude/skills/webapp-testing/SKILL.md

Instructions

SKILL.md

Back

Prerequisites

  • Node.js 18+
  • Playwright

Security & Permissions

3 permissions required

  • Uses network / internet access
  • Can modify files on disk
  • Executes shell commands

Details

Published
2026/01/09
Language
typescript
Token Est.
~450

Resources

  • GitHub Repository

Tags

testingplaywrightwebappautomation
Logo
Agent Skills

Discover and download skills for Claude Code and other AI agents

GitHub
Skills
  • Category
  • Publishers
  • Cookbook
Resources
  • Blog
  • GitHub
Legal
  • Privacy Policy
  • Terms of Service
Copyright © 2026 All Rights Reserved.

Webapp Testing Skill

Test web applications using Playwright for automated UI verification.

Features

  • Browser Automation: Control Chrome, Firefox, Safari
  • Visual Testing: Screenshot comparison
  • Interaction Testing: Click, type, navigate
  • Network Mocking: Mock API responses

Example

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

test('homepage has title', async ({ page }) => {
  await page.goto('http://localhost:3000');
  await expect(page).toHaveTitle(/My App/);
});