PluginBench
Skill
Official
Review
Audit score 70

webapp-testing

github/awesome-copilot

Playwright-based toolkit for testing and debugging local web applications with browser automation.

What is webapp-testing?

This skill enables comprehensive testing and debugging of local web applications using Playwright automation. Use it when you need to verify frontend functionality, test UI interactions, capture screenshots, inspect browser logs, and validate user flows in a real browser environment.

  • Navigate to URLs and interact with page elements (buttons, links, forms, dropdowns)
  • Assert element presence, verify text content, check visibility, and validate URLs
  • Capture screenshots and inspect browser console logs for debugging
  • Handle dialogs, alerts, and responsive design testing
  • Wait for elements and network requests with explicit waits
  • Test form submissions and multi-step user flows

How to install webapp-testing

npx skills add https://github.com/github/awesome-copilot --skill webapp-testing
Prerequisites
  • Node.js installed on the system
  • A locally running web application or accessible URL
  • Playwright will be installed automatically if not present
Claude Code
Cursor
Windsurf
Cline

How to use webapp-testing

  1. 1.Verify the local web application is running and accessible
  2. 2.Create a test script using Playwright (navigate, interact, assert)
  3. 3.Use explicit waits before interacting with elements to ensure they're ready
  4. 4.Capture screenshots on failures to help debug issues
  5. 5.Close the browser and clean up resources when done

Use cases

Good for
  • Verify a login form works correctly by filling fields and checking redirect to dashboard
  • Capture screenshots of UI bugs for documentation and debugging
  • Test responsive design by changing viewport sizes and verifying layout
  • Validate that form validation messages appear when required fields are empty
  • Debug failed tests by capturing screenshots and reviewing console logs
Who it's for
  • Frontend developers testing web applications
  • QA engineers automating browser-based tests
  • Full-stack developers debugging UI behavior
  • Developers building and validating user workflows

webapp-testing FAQ

What if my web app isn't running?

Check that your local server is accessible before running tests. Verify the URL and port are correct, and that the application has started successfully.

How do I wait for elements to load?

Use `page.waitForSelector()` with a state parameter, or check element count with `page.locator().count()` to verify elements exist before interacting.

Can I test mobile responsiveness?

Yes, you can test responsive design by setting different viewport sizes and verifying layout behavior across viewports.

What should I do when a test fails?

Capture a screenshot using `page.screenshot()` and check browser console logs with the `console` event listener to debug the issue.

Can this test native mobile apps?

No, this skill is for web applications only. Use React Native Testing Library for native mobile app testing instead.

Full instructions (SKILL.md)

Source of truth, from github/awesome-copilot.


name: webapp-testing description: Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.

Web Application Testing

This skill enables comprehensive testing and debugging of local web applications using Playwright automation.

You should use the Playwright MCP Server to undertake the work if possible. If the MCP Server is unavailable, you can run the code in a local Node.js environment with Playwright installed.

When to Use This Skill

Use this skill when you need to:

  • Test frontend functionality in a real browser
  • Verify UI behavior and interactions
  • Debug web application issues
  • Capture screenshots for documentation or debugging
  • Inspect browser console logs
  • Validate form submissions and user flows
  • Check responsive design across viewports

Prerequisites

  • Node.js installed on the system
  • A locally running web application (or accessible URL)
  • Playwright will be installed automatically if not present

Core Capabilities

1. Browser Automation

  • Navigate to URLs
  • Click buttons and links
  • Fill form fields
  • Select dropdowns
  • Handle dialogs and alerts

2. Verification

  • Assert element presence
  • Verify text content
  • Check element visibility
  • Validate URLs
  • Test responsive behavior

3. Debugging

  • Capture screenshots
  • View console logs
  • Inspect network requests
  • Debug failed tests

Usage Examples

Example 1: Basic Navigation Test

// Navigate to a page and verify title
await page.goto("http://localhost:3000");
const title = await page.title();
console.log("Page title:", title);

Example 2: Form Interaction

// Fill out and submit a form
await page.fill("#username", "testuser");
await page.fill("#password", "password123");
await page.click('button[type="submit"]');
await page.waitForURL("**/dashboard");

Example 3: Screenshot Capture

// Capture a screenshot for debugging
await page.screenshot({ path: "debug.png", fullPage: true });

Guidelines

  1. Always verify the app is running - Check that the local server is accessible before running tests
  2. Use explicit waits - Wait for elements or navigation to complete before interacting
  3. Capture screenshots on failure - Take screenshots to help debug issues
  4. Clean up resources - Always close the browser when done
  5. Handle timeouts gracefully - Set reasonable timeouts for slow operations
  6. Test incrementally - Start with simple interactions before complex flows
  7. Use selectors wisely - Prefer data-testid or role-based selectors over CSS classes

Common Patterns

Pattern: Wait for Element

await page.waitForSelector("#element-id", { state: "visible" });

Pattern: Check if Element Exists

const exists = (await page.locator("#element-id").count()) > 0;

Pattern: Get Console Logs

page.on("console", (msg) => console.log("Browser log:", msg.text()));

Pattern: Handle Errors

try {
  await page.click("#button");
} catch (error) {
  await page.screenshot({ path: "error.png" });
  throw error;
}

Limitations

  • Requires Node.js environment
  • Cannot test native mobile apps (use React Native Testing Library instead)
  • May have issues with complex authentication flows
  • Some modern frameworks may require specific configuration

Helper Functions

Some helper functions are available in test-helper.js to simplify common tasks like waiting for elements, capturing screenshots, and handling errors. You can import and use these functions in your tests to improve readability and maintainability.