Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 8580c0c

Browse files
committed
fix(install-selenium): update to chromedriver 2.6
Update to the latest version of Chromedriver. This fixes the issue with OS X 10.9. Closes #181.
1 parent cda66d7 commit 8580c0c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bin/install_selenium_standalone

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ var AdmZip = require('adm-zip')
1313
var SELENIUM_URL =
1414
'https://selenium.googlecode.com/files/selenium-server-standalone-2.37.0.jar';
1515
var CHROMEDRIVER_URL_MAC =
16-
'https://chromedriver.storage.googleapis.com/2.4/chromedriver_mac32.zip';
16+
'https://chromedriver.storage.googleapis.com/2.6/chromedriver_mac32.zip';
1717
var CHROMEDRIVER_URL_LINUX32 =
18-
'https://chromedriver.storage.googleapis.com/2.4/chromedriver_linux32.zip';
18+
'https://chromedriver.storage.googleapis.com/2.6/chromedriver_linux32.zip';
1919
var CHROMEDRIVER_URL_LINUX64 =
20-
'https://chromedriver.storage.googleapis.com/2.4/chromedriver_linux64.zip';
20+
'https://chromedriver.storage.googleapis.com/2.6/chromedriver_linux64.zip';
2121
var CHROMEDRIVER_URL_WINDOWS =
22-
'https://chromedriver.storage.googleapis.com/2.4/chromedriver_win32.zip';
22+
'https://chromedriver.storage.googleapis.com/2.6/chromedriver_win32.zip';
2323

2424
var DOWNLOAD_DIR = './selenium/';
2525
var START_SCRIPT_FILENAME = DOWNLOAD_DIR + 'start';

0 commit comments

Comments
 (0)