Skip to content

Commit b0761a2

Browse files
fix(launcher): Remove empty page workaround
Removing this for now as it seems to do more harm than good Closes #14
1 parent e5f55a0 commit b0761a2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/sauce_launcher.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,7 @@ var SauceLauncher = function (
165165
}
166166

167167
log.debug('Shutting down the %s driver', browserName)
168-
// workaround - navigate to other page to avoid re-connection
169-
driver.get('about:blank').catch().quit().nodeify(allDone)
168+
driver.quit().nodeify(allDone)
170169
sessionIsReady = false
171170
} else {
172171
pendingCancellations++

0 commit comments

Comments
 (0)