chore: prepare v0.23.1 release (#1089)
* chore: add patch changeset for v0.23.1 release Add changeset covering 7 commits since v0.23.0: auto-dialog dismissal, Puppeteer cache fallback, console output improvements, same-document navigation fix, cross-domain save_state, external tab detection in CDP mode, and dashboard hot-reload. Fill documentation gaps: Puppeteer/Brave in browser discovery tables, console --json args field, AGENT_BROWSER_NO_AUTO_DIALOG env var in SKILL.md. * chore: point package.json homepage to agent-browser.dev
This commit is contained in:
@@ -256,6 +256,7 @@ agent-browser record start <path> # Start video recording (WebM)
|
||||
agent-browser record stop # Stop and save video
|
||||
agent-browser record restart <path> # Stop current and start new recording
|
||||
agent-browser console # View console messages
|
||||
agent-browser console --json # JSON output with raw CDP args
|
||||
agent-browser console --clear # Clear console log
|
||||
agent-browser errors # View page errors
|
||||
agent-browser errors --clear # Clear error log
|
||||
|
||||
@@ -17,6 +17,8 @@ When no `--executable-path` is provided, agent-browser searches for Chrome in th
|
||||
<code>/Applications/Google Chrome.app</code>,
|
||||
<code>/Applications/Google Chrome Canary.app</code>,
|
||||
<code>/Applications/Chromium.app</code>,
|
||||
<code>/Applications/Brave Browser.app</code>,
|
||||
Puppeteer cache (<code>~/.cache/puppeteer/chrome/</code> or <code>PUPPETEER_CACHE_DIR</code>),
|
||||
Chrome for Testing cache
|
||||
</td>
|
||||
</tr>
|
||||
@@ -27,6 +29,7 @@ When no `--executable-path` is provided, agent-browser searches for Chrome in th
|
||||
<code>google-chrome-stable</code>,
|
||||
<code>chromium-browser</code>,
|
||||
<code>chromium</code> in PATH,
|
||||
Puppeteer cache (<code>~/.cache/puppeteer/chrome/</code> or <code>PUPPETEER_CACHE_DIR</code>),
|
||||
Chrome for Testing cache
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -111,10 +111,13 @@ Sent when the browser logs to the console:
|
||||
"type": "console",
|
||||
"level": "log",
|
||||
"text": "Page loaded",
|
||||
"args": [{"type": "string", "value": "Page loaded"}],
|
||||
"timestamp": 1711367000100
|
||||
}
|
||||
```
|
||||
|
||||
The `args` array contains the raw CDP `Runtime.consoleAPICalled` arguments for programmatic access. Object arguments include preview data (e.g. `{userId: "abc", count: 42}` instead of `"Object"`).
|
||||
|
||||
These are in addition to the existing `frame`, `status`, and `error` message types documented on the [Streaming](/streaming) page.
|
||||
|
||||
## Architecture
|
||||
|
||||
Reference in New Issue
Block a user