From 8515c8854b680916687e583c23d69f03416e3df1 Mon Sep 17 00:00:00 2001 From: ShionElia Date: Fri, 20 Mar 2026 08:15:28 +0000 Subject: [PATCH 1/2] docs: fix Browserless CDP URL example --- docs/tools/browser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tools/browser.md b/docs/tools/browser.md index 4797bc7409b..4f57843e90d 100644 --- a/docs/tools/browser.md +++ b/docs/tools/browser.md @@ -205,7 +205,7 @@ Example: remoteCdpHandshakeTimeoutMs: 4000, profiles: { browserless: { - cdpUrl: "https://production-sfo.browserless.io?token=", + cdpUrl: "wss://production-sfo.browserless.io?token=", color: "#00AA00", }, }, From dc72def0bd011ba33fe532c3600197060fdf78c3 Mon Sep 17 00:00:00 2001 From: ShionElia Date: Sat, 21 Mar 2026 05:41:34 +0000 Subject: [PATCH 2/2] docs(browser): clarify Browserless websocket docs --- docs/tools/browser.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/tools/browser.md b/docs/tools/browser.md index 4f57843e90d..96a7aa76fa3 100644 --- a/docs/tools/browser.md +++ b/docs/tools/browser.md @@ -191,8 +191,9 @@ Notes: ## Browserless (hosted remote CDP) [Browserless](https://browserless.io) is a hosted Chromium service that exposes -CDP endpoints over HTTPS. You can point an OpenClaw browser profile at a -Browserless region endpoint and authenticate with your API key. +remote CDP endpoints. You can point an OpenClaw browser profile at a +Browserless region endpoint and authenticate with your API key. The example +below uses Browserless's direct WebSocket endpoint. Example: @@ -223,10 +224,11 @@ Notes: Some hosted browser services expose a **direct WebSocket** endpoint rather than the standard HTTP-based CDP discovery (`/json/version`). OpenClaw supports both: -- **HTTP(S) endpoints** (e.g. Browserless) — OpenClaw calls `/json/version` to +- **HTTP(S) endpoints** — OpenClaw calls `/json/version` to discover the WebSocket debugger URL, then connects. - **WebSocket endpoints** (`ws://` / `wss://`) — OpenClaw connects directly, skipping `/json/version`. Use this for services like + [Browserless](https://browserless.io), [Browserbase](https://www.browserbase.com) or any provider that hands you a WebSocket URL.