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:
parent
d1100bac8a
commit
543701d452
@ -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: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user