惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
宝玉的分享
宝玉的分享
月光博客
月光博客
B
Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
博客园_首页
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
A
About on SuperTechFans
Y
Y Combinator Blog
L
LangChain Blog
有赞技术团队
有赞技术团队
D
Docker
爱范儿
爱范儿
博客园 - 司徒正美
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
酷 壳 – CoolShell
酷 壳 – CoolShell
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
docs(browser): document inspection diagnostics · openclaw...
steipete · 2026-04-25 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -113,6 +113,7 @@ Docs: https://docs.openclaw.ai

113113

- Browser/tool: expose stable `tabId` handles such as `t1` plus optional tab labels, and accept those handles anywhere a browser tab target is needed. Thanks @steipete.

114114

- Browser/tool: return `suggestedTargetId` first in tab payloads so agents naturally reuse labels or stable tab handles instead of raw DevTools ids. Thanks @steipete.

115115

- Browser/tool: bundle a `browser-automation` skill with the multi-step snapshot, stable-tab, stale-ref, and manual-blocker loop for agent-controlled pages. Thanks @steipete.

116+

- Browser/tool: add `openclaw browser doctor`, URL-expanded snapshots, direct labeled screenshots, and clearer tab-target errors for agents that accidentally pass positional indexes. Thanks @steipete.

116117

- Plugins/Google Meet: use browser automation to classify and clear Meet's microphone-choice interstitial during browser meeting creation, and reuse in-progress create tabs on retry instead of opening duplicates. Thanks @steipete.

117118

- Codex/GPT-5.4: harden fallback, auth-profile, tool-schema, and replay edge cases across native and embedded runtime paths. (#70743) Thanks @100yenadmin.

118119

- Models/fallback: resolve bare fallback model provider ids before model switching, so configured fallback chains keep working when a fallback is named without an explicit provider prefix. Thanks @steipete.

Original file line numberDiff line numberDiff line change

@@ -40,6 +40,7 @@ If `start` fails with `not reachable after start`, troubleshoot CDP readiness fi

4040

Minimal sequence:

4141
4242

```bash

43+

openclaw browser --browser-profile openclaw doctor

4344

openclaw browser --browser-profile openclaw start

4445

openclaw browser --browser-profile openclaw tabs

4546

openclaw browser --browser-profile openclaw open https://example.com

@@ -51,6 +52,7 @@ Detailed guidance: [Browser troubleshooting](/tools/browser#cdp-startup-failure-

5152
5253

```bash

5354

openclaw browser status

55+

openclaw browser doctor

5456

openclaw browser start

5557

openclaw browser stop

5658

openclaw browser --browser-profile openclaw reset-profile

@@ -132,6 +134,7 @@ Snapshot:

132134
133135

```bash

134136

openclaw browser snapshot

137+

openclaw browser snapshot --urls

135138

```

136139
137140

Screenshot:

@@ -140,6 +143,7 @@ Screenshot:

140143

openclaw browser screenshot

141144

openclaw browser screenshot --full-page

142145

openclaw browser screenshot --ref e12

146+

openclaw browser screenshot --labels

143147

```

144148
145149

Notes:

@@ -148,6 +152,10 @@ Notes:

148152

or `--element`.

149153

- `existing-session` / `user` profiles support page screenshots and `--ref`

150154

screenshots from snapshot output, but not CSS `--element` screenshots.

155+

- `--labels` overlays current snapshot refs on the screenshot.

156+

- `snapshot --urls` appends discovered link destinations to AI snapshots so

157+

agents can choose direct navigation targets instead of guessing from link

158+

text alone.

151159
152160

Navigate/click/type (ref-based UI automation):

153161
Original file line numberDiff line numberDiff line change

@@ -141,11 +141,13 @@ openclaw browser close abcd1234

141141

openclaw browser screenshot

142142

openclaw browser screenshot --full-page

143143

openclaw browser screenshot --ref 12 # or --ref e12

144+

openclaw browser screenshot --labels

144145

openclaw browser snapshot

145146

openclaw browser snapshot --format aria --limit 200

146147

openclaw browser snapshot --interactive --compact --depth 6

147148

openclaw browser snapshot --efficient

148149

openclaw browser snapshot --labels

150+

openclaw browser snapshot --urls

149151

openclaw browser snapshot --selector "#main" --interactive

150152

openclaw browser snapshot --frame "iframe#main" --interactive

151153

openclaw browser console --level error

@@ -221,6 +223,7 @@ Snapshot flags at a glance:

221223

- `--efficient` (or `--mode efficient`): compact role snapshot preset. Set `browser.snapshotDefaults.mode: "efficient"` to make this the default (see [Gateway configuration](/gateway/configuration-reference#browser)).

222224

- `--interactive`, `--compact`, `--depth`, `--selector` force a role snapshot with `ref=e12` refs. `--frame "<iframe>"` scopes role snapshots to an iframe.

223225

- `--labels` adds a viewport-only screenshot with overlayed ref labels (prints `MEDIA:<path>`).

226+

- `--urls` appends discovered link destinations to AI snapshots.

224227
225228

## Snapshots and refs

226229

@@ -236,6 +239,8 @@ OpenClaw supports two “snapshot” styles:

236239

- Actions: `openclaw browser click e12`, `openclaw browser highlight e12`.

237240

- Internally, the ref is resolved via `getByRole(...)` (plus `nth()` for duplicates).

238241

- Add `--labels` to include a viewport screenshot with overlayed `e12` labels.

242+

- Add `--urls` when link text is ambiguous and the agent needs concrete

243+

navigation targets.

239244
240245

Ref behavior:

241246
Original file line numberDiff line numberDiff line change

@@ -34,6 +34,7 @@ agent automation and verification.

3434

## Quick start

3535
3636

```bash

37+

openclaw browser --browser-profile openclaw doctor

3738

openclaw browser --browser-profile openclaw status

3839

openclaw browser --browser-profile openclaw start

3940

openclaw browser --browser-profile openclaw open https://example.com

@@ -603,7 +604,8 @@ How it maps:

603604
604605

- `browser snapshot` returns a stable UI tree (AI or ARIA).

605606

- `browser act` uses the snapshot `ref` IDs to click/type/drag/select.

606-

- `browser screenshot` captures pixels (full page or element).

607+

- `browser screenshot` captures pixels (full page, element, or labeled refs).

608+

- `browser doctor` checks Gateway, plugin, profile, browser, and tab readiness.

607609

- `browser` accepts:

608610

- `profile` to choose a named browser profile (openclaw, chrome, or remote CDP).

609611

- `target` (`sandbox` | `host` | `node`) to select where the browser lives.