webapp-testing — community webapp-testing, next15-template-pjs, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0

关于此技能

非常适合需要全面Web应用程序测试和调试功能的前端代理,具有Playwright自动化功能。 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.

schuttpj schuttpj
[0]
[0]
更新于: 1/10/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 9/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
9/11
Quality Score
51
Canonical Locale
en
Detected Body Locale
en

非常适合需要全面Web应用程序测试和调试功能的前端代理,具有Playwright自动化功能。 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.

核心价值

赋予代理自动化前端功能测试的能力,能够在真实浏览器中验证UI行为和交互,并使用Playwright调试Web应用程序问题,同时捕获屏幕截图并检查浏览器控制台日志以用于验证和调试目的。

适用 Agent 类型

非常适合需要全面Web应用程序测试和调试功能的前端代理,具有Playwright自动化功能。

赋予的主要能力 · webapp-testing

在真实浏览器中自动化前端功能测试
调试Web应用程序问题并验证UI行为
跨不同视口验证表单提交和用户流程

! 使用限制与门槛

  • 需要Playwright自动化设置
  • 仅限本地Web应用程序测试
  • 需要访问浏览器控制台日志以进行调试

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

webapp-testing 是什么?

非常适合需要全面Web应用程序测试和调试功能的前端代理,具有Playwright自动化功能。 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.

如何安装 webapp-testing?

运行命令:npx killer-skills add schuttpj/next15-template-pjs/webapp-testing。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

webapp-testing 适用于哪些场景?

典型场景包括:在真实浏览器中自动化前端功能测试、调试Web应用程序问题并验证UI行为、跨不同视口验证表单提交和用户流程。

webapp-testing 支持哪些 IDE 或 Agent?

该技能兼容 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。可使用 Killer-Skills CLI 一条命令通用安装。

webapp-testing 有哪些限制?

需要Playwright自动化设置;仅限本地Web应用程序测试;需要访问浏览器控制台日志以进行调试。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add schuttpj/next15-template-pjs/webapp-testing。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    webapp-testing 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

webapp-testing

安装 webapp-testing,这是一款面向AI agent workflows and automation的 AI Agent Skill。支持 Claude Code、Cursor、Windsurf,一键安装。

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

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

相关技能

寻找 webapp-testing 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具