You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **Deprecated:** Prefer `scrape` + `interact` instead. Interact lets you scrape a page and then click, fill forms, and navigate without managing sessions manually. See the `interact` command.
469
471
470
472
Launch and control cloud browser sessions. By default, commands are sent to agent-browser (pre-installed in every sandbox). Use `--python` or `--node` to run Playwright code directly instead.
471
473
@@ -866,24 +868,22 @@ Add `-y` to any command to auto-approve tool permissions (maps to `--dangerously
866
868
867
869
### Live View
868
870
869
-
Use `firecrawl browser launch --json`to get a live view URL, then pass it to your agent so you can watch it work in real-time:
871
+
Use `firecrawl scrape <url>` + `firecrawl interact`to interact with pages. For advanced use cases requiring a raw CDP session, you can still use `firecrawl browser launch --json` to get a live view URL:
870
872
871
873
```bash
872
-
# Launch a browser session and grab the live view URL
874
+
# Preferred: scrape + interact workflow
875
+
firecrawl scrape https://myapp.com
876
+
firecrawl interact --prompt "Click on the login button and fill in the form"
877
+
878
+
# Advanced: Launch a browser session and grab the live view URL
claude --append-system-prompt "A cloud browser session is running. Live view: $LIVE_URL -- use \`firecrawl browser\`commands to interact." \
882
+
claude --append-system-prompt "A cloud browser session is running. Live view: $LIVE_URL -- use \`firecrawl interact\` to interact with scraped pages." \
877
883
--dangerously-skip-permissions \
878
-
"QA test https://myapp.com using the cloud browser"
879
-
880
-
# Pass it to Codex
881
-
codex --full-auto \
882
-
--config "instructions=A cloud browser session is running. Live view: $LIVE_URL -- use \`firecrawl browser\` commands to interact." \
883
-
"walk through the signup flow on https://example.com"
884
+
"QA test https://myapp.com"
884
885
885
-
# Or use the built-in workflow commands (session is auto-saved for firecrawl browser)
0 commit comments