Labsco
github logo

webapp-testing

✓ Official36,200

by github · part of github/awesome-copilot

Browser automation and testing toolkit for local web applications using Playwright. Supports core browser interactions including navigation, form filling, clicking, dropdown selection, and dialog handling Includes verification capabilities for element presence, text content, visibility, URLs, and responsive design across viewports Provides debugging tools: screenshot capture, console log inspection, network request monitoring, and error handling patterns Works with Node.js environments and...

🔥🔥🔥🔥✓ VerifiedFreeQuick setup
🧩 One of 7 skills in the github/awesome-copilot package — works on its own, and pairs well with its siblings.

Browser automation and testing toolkit for local web applications using Playwright. Supports core browser interactions including navigation, form filling, clicking, dropdown selection, and dialog handling Includes verification capabilities for element presence, text content, visibility, URLs, and responsive design across viewports Provides debugging tools: screenshot capture, console log inspection, network request monitoring, and error handling patterns Works with Node.js environments and...

Inspect the full instructions your agent will receiveExpand

This is the exact playbook injected into your agent when the skill activates — shown here so you can audit it before installing. You don't need to read it to use the skill.

by github

Browser automation and testing toolkit for local web applications using Playwright. Supports core browser interactions including navigation, form filling, clicking, dropdown selection, and dialog handling Includes verification capabilities for element presence, text content, visibility, URLs, and responsive design across viewports Provides debugging tools: screenshot capture, console log inspection, network request monitoring, and error handling patterns Works with Node.js environments and... npx skills add https://github.com/github/awesome-copilot --skill webapp-testing Download ZIPGitHub36.2k

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

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

Guidelines

  • Always verify the app is running - Check that the local server is accessible before running tests

  • Use explicit waits - Wait for elements or navigation to complete before interacting

  • Capture screenshots on failure - Take screenshots to help debug issues

  • Clean up resources - Always close the browser when done

  • Handle timeouts gracefully - Set reasonable timeouts for slow operations

  • Test incrementally - Start with simple interactions before complex flows

  • Use selectors wisely - Prefer data-testid or role-based selectors over CSS classes

Common Patterns

Pattern: Wait for Element

Copy & paste — that's it
await page.waitForSelector("#element-id", { state: "visible" });

Pattern: Check if Element Exists

Copy & paste — that's it
const exists = (await page.locator("#element-id").count()) > 0;

Pattern: Get Console Logs

Copy & paste — that's it
page.on("console", (msg) => console.log("Browser log:", msg.text()));

Pattern: Handle Errors

Copy & paste — that's it
try {
 await page.click("#button");
} catch (error) {
 await page.screenshot({ path: "error.png" });
 throw error;
}

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.