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

Commit

Permalink
fix(install-selenium): update to chromedriver 2.6
Browse files Browse the repository at this point in the history
Update to the latest version of Chromedriver. This fixes the issue with
OS X 10.9. Closes #181.
  • Loading branch information
juliemr committed Nov 7, 2013
1 parent cda66d7 commit 8580c0c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bin/install_selenium_standalone
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ var AdmZip = require('adm-zip')
var SELENIUM_URL =
'https://selenium.googlecode.com/files/selenium-server-standalone-2.37.0.jar';
var CHROMEDRIVER_URL_MAC =
'https://chromedriver.storage.googleapis.com/2.4/chromedriver_mac32.zip';
'https://chromedriver.storage.googleapis.com/2.6/chromedriver_mac32.zip';
var CHROMEDRIVER_URL_LINUX32 =
'https://chromedriver.storage.googleapis.com/2.4/chromedriver_linux32.zip';
'https://chromedriver.storage.googleapis.com/2.6/chromedriver_linux32.zip';
var CHROMEDRIVER_URL_LINUX64 =
'https://chromedriver.storage.googleapis.com/2.4/chromedriver_linux64.zip';
'https://chromedriver.storage.googleapis.com/2.6/chromedriver_linux64.zip';
var CHROMEDRIVER_URL_WINDOWS =
'https://chromedriver.storage.googleapis.com/2.4/chromedriver_win32.zip';
'https://chromedriver.storage.googleapis.com/2.6/chromedriver_win32.zip';

var DOWNLOAD_DIR = './selenium/';
var START_SCRIPT_FILENAME = DOWNLOAD_DIR + 'start';
Expand Down

0 comments on commit 8580c0c

Please sign in to comment.