fix(browser): hide navigator.webdriver from reCAPTCHA v3 detection (openclaw#10735) thanks @Milofax

Verified:
- pnpm install --frozen-lockfile
- pnpm build
- pnpm check
- pnpm test

Co-authored-by: Milofax <2537423+Milofax@users.noreply.github.com>
Co-authored-by: Tak Hoffman <781889+Takhoffman@users.noreply.github.com>
This commit is contained in:
Milofax
2026-02-13 03:16:28 +01:00
committed by GitHub
parent 57d0f65e7d
commit 89503e1451
2 changed files with 4 additions and 0 deletions

View File

@@ -214,6 +214,9 @@ export async function launchOpenClawChrome(
args.push("--disable-dev-shm-usage");
}
// Stealth: hide navigator.webdriver from automation detection (#80)
args.push("--disable-blink-features=AutomationControlled");
// Always open a blank tab to ensure a target exists.
args.push("about:blank");