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
Copy file name to clipboardExpand all lines: browser-act/SKILL.md
+18-13Lines changed: 18 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,10 @@ The CLI is an open-source package published to PyPI by [BrowserAct](https://www.
60
60
If the task is just "get content from a URL", use `stealth-extract` directly — no browser session needed. Each call launches its own headless stealth browser, extracts the page content, and closes automatically.
61
61
62
62
```bash
63
-
browser-act stealth-extract <url># Extract page content with anti-detection
63
+
browser-act stealth-extract <url># Extract rendered content as markdown (default)
64
+
browser-act stealth-extract <url> --content-type html # Extract HTML instead of markdown
65
+
browser-act stealth-extract <url> --proxy http://host:port # Use a proxy
66
+
browser-act stealth-extract <url> --timeout 60 --output # Save to outputs/ instead of printing
|`--proxy <url>`| Proxy with scheme (`http`, `https`, `socks4`, `socks5`), e.g. `socks5://host:port`|
104
107
|`--mode <normal\|private>`|`normal` (default): persists cache, cookies, login across launches. `private`: fresh environment every launch, no saved state |
105
-
|`--cookie <json\|file>`| Pre-load cookies on creation. Accepts inline JSON object/array, or a path to a JSON file. See `references/commands.md` Cookies Management for format details |
108
+
|`--cookie <json\|file>`| Pre-load cookies on creation. Accepts inline JSON object/array, or a path to a JSON file. Each cookie must include `name`, `value`, and `domain`. See `references/commands.md` Cookies Management for format details |
106
109
107
110
Stealth browsers in `normal` mode (default) persist cookies, cache, and login sessions across launches — you can log in once and reuse the session, similar to a regular browser profile. Use `--mode private` when the task should not persist any state.
108
111
@@ -222,7 +225,6 @@ browser-act select <index> "option" # Select dropdown option by visible text
222
225
browser-act keys "Enter"# Send keyboard keys
223
226
browser-act scroll down # Scroll down (default 500px)
224
227
browser-act scroll up --amount 1000 # Scroll with custom distance
225
-
browser-act scrollintoview <index># Scroll element into viewport
226
228
browser-act scrollintoview --selector "h1"# Scroll element into viewport by CSS selector
227
229
browser-act upload <index><file_path># Upload file to file input
228
230
@@ -245,28 +247,31 @@ browser-act tab close <tab_id> # Close specific tab
0 commit comments