From f51f2456ca62d15bc626cef5237e8d5712368ae1 Mon Sep 17 00:00:00 2001 From: Vojta Jina Date: Thu, 27 Jun 2013 17:32:10 -0700 Subject: [PATCH] fix: navigate to about:blank rather then google.com --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index fca2515..e226fc7 100644 --- a/index.js +++ b/index.js @@ -111,7 +111,7 @@ var SauceLabBrowser = function(id, args, sauceConnect, /* config.sauceLabs */ co clearTimeout(pendingHeartBeat); log.debug('Shutting down Sauce Labs driver'); // workaround - navigate to other page to avoid re-connection - driver.get('http://www.google.com', function() { + driver.get('about:blank', function() { driver.quit(done); }); };