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

推荐订阅源

J
Java Code Geeks
腾讯CDC
M
MIT News - Artificial intelligence
Y
Y Combinator Blog
L
LangChain Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
P
Proofpoint News Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
IT之家
IT之家
A
About on SuperTechFans
H
Help Net Security

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
fix(browser): fall back to headless on Linux without disp...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -3,7 +3,14 @@ import path from "node:path";

33

import { describe, expect, it } from "vitest";

44

import type { BrowserConfig } from "../config/config.js";

55

import { resolveUserPath } from "../utils.js";

6-

import { resolveBrowserConfig, resolveProfile, shouldStartLocalBrowserServer } from "./config.js";

6+

import {

7+

getManagedBrowserMissingDisplayError,

8+

OPENCLAW_BROWSER_HEADLESS_ENV,

9+

resolveBrowserConfig,

10+

resolveManagedBrowserHeadlessMode,

11+

resolveProfile,

12+

shouldStartLocalBrowserServer,

13+

} from "./config.js";

714

import { getBrowserProfileCapabilities } from "./profile-capabilities.js";

815916

function withEnv<T>(env: Record<string, string | undefined>, fn: () => T): T {

@@ -315,6 +322,111 @@ describe("browser config", () => {

315322

expect(remote?.headless).toBe(false);

316323

});

317324325+

describe("managed browser headless mode", () => {

326+

const noDisplayEnv = {

327+

DISPLAY: undefined,

328+

WAYLAND_DISPLAY: undefined,

329+

[OPENCLAW_BROWSER_HEADLESS_ENV]: undefined,

330+

};

331+332+

it("falls back to headless for local managed Linux profiles without display", () => {

333+

const resolved = resolveBrowserConfig({});

334+

const profile = resolveProfile(resolved, "openclaw")!;

335+336+

expect(

337+

resolveManagedBrowserHeadlessMode(resolved, profile, {

338+

platform: "linux",

339+

env: noDisplayEnv,

340+

}),

341+

).toEqual({ headless: true, source: "linux-display-fallback" });

342+

});

343+344+

it("does not apply the no-display fallback to remote CDP profiles", () => {

345+

const resolved = resolveBrowserConfig({

346+

profiles: {

347+

remote: { cdpUrl: "http://10.0.0.42:9222", color: "#00AA00" },

348+

},

349+

});

350+

const profile = resolveProfile(resolved, "remote")!;

351+352+

expect(

353+

resolveManagedBrowserHeadlessMode(resolved, profile, {

354+

platform: "linux",

355+

env: noDisplayEnv,

356+

}),

357+

).toEqual({ headless: false, source: "default" });

358+

});

359+360+

it("lets explicit profile headless=false beat the Linux no-display fallback", () => {

361+

const resolved = resolveBrowserConfig({

362+

headless: true,

363+

profiles: {

364+

openclaw: { cdpPort: 18800, color: "#FF4500", headless: false },

365+

},

366+

});

367+

const profile = resolveProfile(resolved, "openclaw")!;

368+369+

expect(

370+

resolveManagedBrowserHeadlessMode(resolved, profile, {

371+

platform: "linux",

372+

env: noDisplayEnv,

373+

}),

374+

).toEqual({ headless: false, source: "profile" });

375+

});

376+377+

it("lets explicit global headless=false beat the Linux no-display fallback", () => {

378+

const resolved = resolveBrowserConfig({ headless: false });

379+

const profile = resolveProfile(resolved, "openclaw")!;

380+381+

expect(

382+

resolveManagedBrowserHeadlessMode(resolved, profile, {

383+

platform: "linux",

384+

env: noDisplayEnv,

385+

}),

386+

).toEqual({ headless: false, source: "config" });

387+

});

388+389+

it("lets OPENCLAW_BROWSER_HEADLESS override profile/global config", () => {

390+

const resolved = resolveBrowserConfig({

391+

profiles: {

392+

openclaw: { cdpPort: 18800, color: "#FF4500", headless: false },

393+

},

394+

});

395+

const profile = resolveProfile(resolved, "openclaw")!;

396+397+

expect(

398+

resolveManagedBrowserHeadlessMode(resolved, profile, {

399+

platform: "linux",

400+

env: { ...noDisplayEnv, [OPENCLAW_BROWSER_HEADLESS_ENV]: "1" },

401+

}),

402+

).toEqual({ headless: true, source: "env" });

403+

});

404+405+

it("returns an actionable error only when headed mode is explicitly selected", () => {

406+

const defaultResolved = resolveBrowserConfig({});

407+

const defaultProfile = resolveProfile(defaultResolved, "openclaw")!;

408+

expect(

409+

getManagedBrowserMissingDisplayError(defaultResolved, defaultProfile, {

410+

platform: "linux",

411+

env: noDisplayEnv,

412+

}),

413+

).toBeNull();

414+415+

const profileResolved = resolveBrowserConfig({

416+

profiles: {

417+

openclaw: { cdpPort: 18800, color: "#FF4500", headless: false },

418+

},

419+

});

420+

const profile = resolveProfile(profileResolved, "openclaw")!;

421+

expect(

422+

getManagedBrowserMissingDisplayError(profileResolved, profile, {

423+

platform: "linux",

424+

env: noDisplayEnv,

425+

}),

426+

).toContain("browser.profiles.openclaw.headless=false");

427+

});

428+

});

429+318430

it("inherits executablePath from global browser config when profile override is not set", () => {

319431

const resolved = resolveBrowserConfig({

320432

executablePath: "~/bin/chrome-global",