diff --git a/test/webbrowser.js b/test/webbrowser.js
index 465f44f59..570d32874 100644
--- a/test/webbrowser.js
+++ b/test/webbrowser.js
@@ -229,7 +229,8 @@ ChromiumBrowser.prototype = Object.create(WebBrowser.prototype);
 ChromiumBrowser.prototype.buildArguments = function (url) {
   var profileDir = this.getProfileDir();
   return ['--user-data-dir=' + profileDir,
-    '--no-first-run', '--disable-sync', url];
+    '--no-first-run', '--disable-sync',
+    '--no-default-browser-check', url];
 };
 
 WebBrowser.create = function (desc) {