webapp-testing — community webapp-testing, DeTrust, Haseeb243, community, ai agent skill, ide skills, agent automation, AI agent skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Frontend Agents needing advanced web application testing and debugging capabilities with Playwright automation. Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser l

Haseeb243 Haseeb243
[0]
[0]
Updated: 3/1/2026

Quality Score

Top 5%
51
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
> npx killer-skills add Haseeb243/DeTrust/webapp-testing
Supports 19+ Platforms
Cursor
Windsurf
VS Code
Trae
Claude
OpenClaw
+12 more

Agent Capability Analysis

The webapp-testing skill by Haseeb243 is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Perfect for Frontend Agents needing advanced web application testing and debugging capabilities with Playwright automation.

Core Value

Empowers agents to comprehensively test and debug local web applications, verifying UI behavior and interactions, and capturing screenshots for documentation or debugging using Playwright automation and real browser interactions.

Capabilities Granted for webapp-testing

Testing frontend functionality in a real browser environment
Debugging web application issues and inspecting browser console logs
Validating form submissions and user flows across different viewports

! Prerequisites & Limits

  • Requires Playwright automation setup
  • Limited to local web application testing
  • Needs access to browser console logs
Project
SKILL.md
3.0 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

Web Application Testing

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

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

javascript
1// Navigate to a page and verify title 2await page.goto('http://localhost:3000'); 3const title = await page.title(); 4console.log('Page title:', title);

Example 2: Form Interaction

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

Example 3: Screenshot Capture

javascript
1// Capture a screenshot for debugging 2await 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

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

Pattern: Check if Element Exists

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

Pattern: Get Console Logs

javascript
1page.on('console', msg => console.log('Browser log:', msg.text()));

Pattern: Handle Errors

javascript
1try { 2 await page.click('#button'); 3} catch (error) { 4 await page.screenshot({ path: 'error.png' }); 5 throw error; 6}

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

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is webapp-testing?

Perfect for Frontend Agents needing advanced web application testing and debugging capabilities with Playwright automation. Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser l

How do I install webapp-testing?

Run the command: npx killer-skills add Haseeb243/DeTrust/webapp-testing. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for webapp-testing?

Key use cases include: Testing frontend functionality in a real browser environment, Debugging web application issues and inspecting browser console logs, Validating form submissions and user flows across different viewports.

Which IDEs are compatible with webapp-testing?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for webapp-testing?

Requires Playwright automation setup. Limited to local web application testing. Needs access to browser console logs.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add Haseeb243/DeTrust/webapp-testing. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use webapp-testing immediately in the current project.

Related Skills

Looking for an alternative to webapp-testing or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
Design

linear

Logo of lobehub
lobehub

Linear issue management. MUST USE when: (1) user mentions LOBE-xxx issue IDs (e.g. LOBE-4540), (2) user says linear, linear issue, link linear, (3) creating PRs that reference Linear issues. Provides

73.4k
0
Communication

testing

Logo of lobehub
lobehub

Testing guide using Vitest. Use when writing tests (.test.ts, .test.tsx), fixing failing tests, improving test coverage, or debugging test issues. Triggers on test creation, test debugging, mock setup

73.3k
0
Communication

zustand

Logo of lobehub
lobehub

Zustand state management guide. Use when working with store code (src/store/**), implementing actions, managing state, or creating slices. Triggers on Zustand store development, state management questions, or action implementation.

72.8k
0
Communication