Release binaries / Build macOS ARM64 (push) Has been cancelled
Release binaries / Build macOS x64 (push) Has been cancelled
Release binaries / Build Linux ARM64 (push) Has been cancelled
Release binaries / Build Linux musl ARM64 (push) Has been cancelled
Release binaries / Build Linux musl x64 (push) Has been cancelled
Release binaries / Build Linux x64 (push) Has been cancelled
Release binaries / Build Windows x64 (push) Has been cancelled
Release binaries / Attach binaries to GitHub Release (push) Has been cancelled
Standalone product rename across the whole repo (issue: project identity): - Binary/package/repo/skill/docs: agent-browser[-stealth] → chrome-use (single binary name `chrome-use`; old aliases agent-browser/abs dropped). - Version: 0.27.0-fork.51 → 1.0.0 (drop the upstream-fork counter). - Native-messaging host: com.agent_browser.connect → com.leeguoo.chrome_use (CLI + ab-connect extension in lockstep — this is a breaking handshake change, extension bumped 0.4.2 → 0.5.0, needs a Web Store republish). - Config dir: ~/.agent-browser → ~/.chrome-use. - README/zh: reframed from "stealth fork of agent-browser" to a standalone product with a small `originally based on vercel-labs/agent-browser` credit. - Kept AGENT_BROWSER_* env vars working (63 vars across the codebase; renaming them would break every existing script/skill for no user-facing gain). Build green, 802 unit tests pass, fmt + clippy clean. Upstream attribution to vercel-labs/agent-browser preserved.
63 lines
1.7 KiB
Bash
Executable File
63 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
# Template: Form Automation Workflow
|
|
# Purpose: Fill and submit web forms with validation
|
|
# Usage: ./form-automation.sh <form-url>
|
|
#
|
|
# This template demonstrates the snapshot-interact-verify pattern:
|
|
# 1. Navigate to form
|
|
# 2. Snapshot to get element refs
|
|
# 3. Fill fields using refs
|
|
# 4. Submit and verify result
|
|
#
|
|
# Customize: Update the refs (@e1, @e2, etc.) based on your form's snapshot output
|
|
|
|
set -euo pipefail
|
|
|
|
FORM_URL="${1:?Usage: $0 <form-url>}"
|
|
|
|
echo "Form automation: $FORM_URL"
|
|
|
|
# Step 1: Navigate to form
|
|
chrome-use open "$FORM_URL"
|
|
chrome-use wait --load networkidle
|
|
|
|
# Step 2: Snapshot to discover form elements
|
|
echo ""
|
|
echo "Form structure:"
|
|
chrome-use snapshot -i
|
|
|
|
# Step 3: Fill form fields (customize these refs based on snapshot output)
|
|
#
|
|
# Common field types:
|
|
# chrome-use fill @e1 "John Doe" # Text input
|
|
# chrome-use fill @e2 "user@example.com" # Email input
|
|
# chrome-use fill @e3 "SecureP@ss123" # Password input
|
|
# chrome-use select @e4 "Option Value" # Dropdown
|
|
# chrome-use check @e5 # Checkbox
|
|
# chrome-use click @e6 # Radio button
|
|
# chrome-use fill @e7 "Multi-line text" # Textarea
|
|
# chrome-use upload @e8 /path/to/file.pdf # File upload
|
|
#
|
|
# Uncomment and modify:
|
|
# chrome-use fill @e1 "Test User"
|
|
# chrome-use fill @e2 "test@example.com"
|
|
# chrome-use click @e3 # Submit button
|
|
|
|
# Step 4: Wait for submission
|
|
# chrome-use wait --load networkidle
|
|
# chrome-use wait --url "**/success" # Or wait for redirect
|
|
|
|
# Step 5: Verify result
|
|
echo ""
|
|
echo "Result:"
|
|
chrome-use get url
|
|
chrome-use snapshot -i
|
|
|
|
# Optional: Capture evidence
|
|
chrome-use screenshot /tmp/form-result.png
|
|
echo "Screenshot saved: /tmp/form-result.png"
|
|
|
|
# Cleanup
|
|
chrome-use close
|
|
echo "Done"
|