We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe38f8c commit 5589403Copy full SHA for 5589403
1 file changed
pkg/runner/drivers/chromedp.go
@@ -84,6 +84,8 @@ func getChromedpAllocator(opts runner.Options) (*browserInstance, error) {
84
chromedp.Flag("https-upgrades-enabled", false),
85
chromedp.Flag("disable-features", "HttpsUpgrades"),
86
chromedp.Flag("explicitly-allowed-ports", restrictedPorts()),
87
+ chromedp.Flag("no-sandbox", true),
88
+ chromedp.Flag("disable-gpu", true),
89
chromedp.WindowSize(opts.Chrome.WindowX, opts.Chrome.WindowY),
90
chromedp.UserDataDir(userData),
91
)
0 commit comments