From 1fdaaac628702e1f2467130757a64ffded39c7a7 Mon Sep 17 00:00:00 2001 From: Navdeep Pama Date: Tue, 25 Oct 2016 17:37:57 -0400 Subject: [PATCH] Update ChromeDriverDownloader.java Chrome v54 seems to be having issues with Chromedriver v2.19, so updating this file to include chromedriver v2.9 --- .../driver/chrome/ChromeDriverDownloader.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/net/codestory/simplelenium/driver/chrome/ChromeDriverDownloader.java b/src/main/java/net/codestory/simplelenium/driver/chrome/ChromeDriverDownloader.java index f66db04..9d15913 100644 --- a/src/main/java/net/codestory/simplelenium/driver/chrome/ChromeDriverDownloader.java +++ b/src/main/java/net/codestory/simplelenium/driver/chrome/ChromeDriverDownloader.java @@ -120,16 +120,16 @@ protected synchronized File downloadAndExtract() { url = Configuration.CHROMEDRIVER_URL.get(); chromeDriverExe = new File(installDir, Configuration.CHROMEDRIVER_EXE.get()); } else if (isWindows()) { - url = "https://chromedriver.storage.googleapis.com/2.19/chromedriver_win32.zip"; + url = "https://chromedriver.storage.googleapis.com/2.9/chromedriver_win32.zip"; chromeDriverExe = new File(installDir, "chromedriver.exe"); } else if (isMac()) { - url = "https://chromedriver.storage.googleapis.com/2.19/chromedriver_mac32.zip"; + url = "https://chromedriver.storage.googleapis.com/2.9/chromedriver_mac32.zip"; chromeDriverExe = new File(installDir, "chromedriver"); } else if (isLinux32()) { - url = "https://chromedriver.storage.googleapis.com/2.19/chromedriver_linux32.zip"; + url = "https://chromedriver.storage.googleapis.com/2.9/chromedriver_linux32.zip"; chromeDriverExe = new File(installDir, "chromedriver"); } else { - url = "https://chromedriver.storage.googleapis.com/2.19/chromedriver_linux64.zip"; + url = "https://chromedriver.storage.googleapis.com/2.9/chromedriver_linux64.zip"; chromeDriverExe = new File(installDir, "chromedriver"); }