From 9eaf25c956c6835aa93def5673c7642ac9843dd1 Mon Sep 17 00:00:00 2001 From: theyosh Date: Mon, 25 Nov 2019 20:51:10 +0000 Subject: [PATCH] Fix Error: signal: trace/breakpoint trap #196 with adding extra Chrome parameter. --- agents/url_screenshotter.go | 1 + 1 file changed, 1 insertion(+) diff --git a/agents/url_screenshotter.go b/agents/url_screenshotter.go index 2d70baa..c4b03f2 100644 --- a/agents/url_screenshotter.go +++ b/agents/url_screenshotter.go @@ -129,6 +129,7 @@ func (a *URLScreenshotter) screenshotPage(page *core.Page) { "--headless", "--disable-gpu", "--hide-scrollbars", "--mute-audio", "--disable-notifications", "--no-first-run", "--disable-crash-reporter", "--ignore-certificate-errors", "--incognito", "--disable-infobars", "--disable-sync", "--no-default-browser-check", + "--disable-features=VizDisplayCompositor", "--user-data-dir=" + a.tempUserDirPath, "--user-agent=" + RandomUserAgent(), "--window-size=" + *a.session.Options.Resolution,