<< All versions
Skill v1.0.1
currentAutomated scan100/100kxiandaoyan/memoh-v2/webapp-testing
3 files
──Details
PublishedJune 5, 2026 at 03:39 AM
Content Hashsha256:5c317d828a5498ea...
Git SHA79522620b9c1
Bump Typepatch
──Files
Files (1 file, 1.6 KB)
SKILL.md1.6 KBactive
SKILL.md · 61 lines · 1.6 KB
version: "1.0.1" name: webapp-testing description: Automated web application testing using browser automation. Use when asked to test a web app, verify UI behavior, check for regressions, or automate browser interactions such as clicking, form filling, navigation, and screenshot capture.
Web App Testing
Test web applications through browser automation.
Quick Start
bash
# Launch browser and navigateexec: agent-browser open https://example.com# Take screenshotexec: agent-browser screenshot --output /data/screenshot.png# Click elementexec: agent-browser click --selector "#submit-btn"# Fill formexec: agent-browser fill --selector "input[name=email]" --value "test@example.com"# Assert text presentexec: agent-browser assert-text --text "Success"
Testing Workflow
- Setup: Navigate to the target URL
- Interact: Perform user actions (click, fill, navigate)
- Assert: Verify expected outcomes (text, elements, URL)
- Screenshot: Capture evidence of results
- Report: Summarize pass/fail with screenshots
Common Patterns
Login flow
open URL → fill username → fill password → click submit → assert dashboard visible
Form submission
fill fields → click submit → assert success message or error handling
Navigation
click nav link → assert URL changed → assert page content
Guidelines
- Always take a screenshot after key interactions as evidence
- Test both happy paths and error cases
- Use specific CSS selectors over generic ones
- Report failures with the exact selector and expected vs actual state