feat: default to headed mode across all platforms

- 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 <noreply@anthropic.com>
This commit is contained in:
Ryan Malloy 2025-08-11 04:53:16 -06:00
parent d1100bac8a
commit 543701d452

View File

@ -55,7 +55,7 @@ const defaultConfig: FullConfig = {
browserName: 'chromium', browserName: 'chromium',
launchOptions: { launchOptions: {
channel: 'chrome', channel: 'chrome',
headless: os.platform() === 'linux' && !process.env.DISPLAY, headless: false,
chromiumSandbox: true, chromiumSandbox: true,
}, },
contextOptions: { contextOptions: {