Catalog
github/webapp-testing

github

webapp-testing

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.

v1.0Latest
New~943Updated Jun 26, 2026

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.

Files2
2 files · 2.5 KB

Select a file to preview

Overall Score

83/100

Grade

B

Good

Safety

82

Quality

85

Clarity

87

Completeness

78

Summary

This skill provides a toolkit for testing and debugging local web applications using Playwright automation. It guides agents to perform browser automation tasks (navigation, form interaction, element verification), capture debugging artifacts (screenshots, console logs), and validate frontend functionality. The skill operates against localhost-bound applications and includes reusable helper functions for common testing patterns.

Detected Capabilities

browser automationfile write (screenshots)local process communicationconsole log inspectionUI element interactionnetwork request inspection

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

test local web appplaywright testingbrowser automationverify ui behaviorscreenshot debuggingform testingconsole log inspection

Risk Signals

INFO

Local server connectivity required - assumes http://localhost:* is accessible

SKILL.md: Example 1, Prerequisites
INFO

File write for screenshots without explicit path validation

assets/test-helper.js: captureScreenshot(), SKILL.md: Example 3
INFO

Console log capture may include sensitive debug output

assets/test-helper.js: captureConsoleLogs()

Referenced Domains

External domains referenced in skill content, detected by static analysis.

localhost

Use Cases

  • Verify form submissions and user workflows in development
  • Debug UI behavior by capturing screenshots and console logs
  • Test responsive design across different viewport sizes
  • Validate element visibility and text content assertions
  • Inspect network behavior and browser logs during testing
  • Automate acceptance testing of local web applications
  • Create automated test evidence for documentation

Quality Notes

  • Skill clearly documents when to use it and prerequisites
  • Well-structured sections with practical code examples for common scenarios
  • Helper functions are properly documented with JSDoc comments
  • Limitations section honestly identifies edge cases (native mobile, complex auth)
  • Guidelines provide actionable best practices (explicit waits, error handling, resource cleanup)
  • Examples use hardcoded localhost URLs which is appropriate for local testing
  • Pattern library demonstrates reusable approaches for common Playwright operations
  • Helper functions include proper error handling and timeout management
  • All referenced supporting files are present and functional
Model: claude-haiku-4-5-20251001Analyzed: Jun 26, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Use github/webapp-testing in your dev environment

Command Palette

Search for a command to run...

github/webapp-testing | SkillRepo