From 543701d452001b8534a106d73030ecd96473d41e Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Mon, 11 Aug 2025 04:53:16 -0600 Subject: [PATCH] feat: default to headed mode across all platforms MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change default headless setting from platform-dependent to false - Browser now shows GUI windows by default on all platforms - --headless flag still overrides to enable headless mode when needed - Provides better user experience with visible browser interactions 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index 4ed58c9..5b6fb35 100644 --- a/src/config.ts +++ b/src/config.ts @@ -55,7 +55,7 @@ const defaultConfig: FullConfig = { browserName: 'chromium', launchOptions: { channel: 'chrome', - headless: os.platform() === 'linux' && !process.env.DISPLAY, + headless: false, chromiumSandbox: true, }, contextOptions: {