From 426e7c39c7429f94e120c90259140174c17e44c1 Mon Sep 17 00:00:00 2001 From: Mark Ethan Trostler Date: Tue, 1 Dec 2015 09:39:41 -0800 Subject: [PATCH] fixes #64 - chrome will ignore command line flags it doesn't yet know about. --- index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 973f431..85c87c9 100644 --- a/index.js +++ b/index.js @@ -37,7 +37,8 @@ var ChromeBrowser = function (baseBrowserDecorator, args) { '--no-first-run', '--disable-default-apps', '--disable-popup-blocking', - '--disable-translate' + '--disable-translate', + '--disable-background-timer-throttling' ].concat(flags, [url]) } }