Loading...
Loading...
Instant visual verification via screenshots. For quick checks like 'does button look blue', 'is layout centered', 'header look right on mobile'. Fast alternative to formal testing - just look and confirm. Use when user wants visual inspection without creating test files.
npx skill4agent add help-me-test/skills helpmetest-visual-check/helpmetest-test-generator/helpmetest/helpmetest-debuggerhelpmetest_run_interactive_commandGo To <url>✓ Login button found in top-right navigation
✓ Color: Blue (#0066FF) - matches expected blue
✓ Size: Standard button size (~120px wide)
✓ Position: Aligned right, 20px from edge# Hover to check hover state
Hover button:has-text("Login")
# Click to check if it works
Click button:has-text("Login")# Set mobile viewport
Set Viewport Size 375 667 # iPhone SE
# Capture mobile view
Go To <url># Navigation
Go To <url>
# Element inspection
Get Element <selector> # Check if exists
Get Style <selector> <property> # Get CSS value
# Viewport changes
Set Viewport Size <width> <height>
# Interactions (to check behavior)
Click <selector>
Hover <selector>
Fill Text <selector> <text>
Press Keys <selector> <key>
# Scrolling
Scroll To Element <selector>
Scroll By <x> <y>
# Waiting (if page loads slowly)
Wait For Elements State <selector> visible timeout=5000User: "Check if the Sign Up button is green"
1. Go To https://example.com
2. Look at screenshot
3. Find "Sign Up" button in nav
4. Respond: "Sign Up button is green (#10B981) ✓"User: "Is the pricing table centered?"
1. Go To https://example.com/pricing
2. Look at screenshot
3. Check table position
4. Respond: "Pricing table is centered ✓ - Equal margins on both sides (~200px)"User: "Does the header look good on mobile?"
1. Set Viewport Size 375 667
2. Go To https://example.com
3. Look at screenshot
4. Respond: "Header stacks vertically ✓ - Logo on top, menu items below. Hamburger icon visible."User: "Check if the button changes color on hover"
1. Go To https://example.com
2. Look at initial screenshot (button default state)
3. Hover button:has-text("Submit")
4. Look at new screenshot (button hover state)
5. Respond: "Button changes from blue (#0066FF) to dark blue (#0047B3) on hover ✓"User: "See if the modal shows up when clicking Contact"
1. Go To https://example.com
2. Click button:has-text("Contact")
3. Look at screenshot
4. Respond: "Modal appears ✓ - Dark overlay with white form centered on screen"[Element/Feature Name]
Status: ✓ Matches expectation / ✗ Issue found / ⚠️ Partial match
Details:
- [Specific observation 1]
- [Specific observation 2]
- [Specific observation 3]
[If issue found:]
Issue: [What's wrong]
Expected: [What it should be]
Actual: [What it is]/helpmetest/helpmetest-test-generator/helpmetest-debugger