/puppeteer Command
Sets Puppeteer MCP as the preferred browser automation tool for testing sessions.
/plugin marketplace add jleechanorg/claude-commands/plugin install claude-commands@claude-commands-marketplaceWhen this command is invoked, YOU (Claude) must execute these steps immediately: This is NOT documentation - these are COMMANDS to execute right now. Use TodoWrite to track progress through multi-phase workflows.
Action Steps: With Puppeteer mode active:
Purpose: Set Puppeteer MCP as the preferred browser automation tool for Claude Code CLI sessions
Usage: /puppeteer
Action: Configure session to use Puppeteer MCP instead of Playwright for browser testing
When /puppeteer is active, test commands will automatically:
./run_ui_tests.sh mock --puppeteer instead of Playwright
# Set Puppeteer preference
/puppeteer
# Now all browser tests use Puppeteer MCP
/testui # Uses --puppeteer flag automatically
# Navigate to test application
mcp__puppeteer-server__puppeteer_navigate(url="http://localhost:6006?test_mode=true")
# Take screenshot
mcp__puppeteer-server__puppeteer_screenshot(name="initial_state")
# Fill form field
mcp__puppeteer-server__puppeteer_fill(selector="#campaign-title", value="Test Campaign")
# Click button
mcp__puppeteer-server__puppeteer_evaluate(script="document.querySelector('#next-btn').click()")
# Validate result
mcp__puppeteer-server__puppeteer_screenshot(name="after_action")