diff --git a/dotnet/src/webdriver/IE/InternetExplorerDriverService.cs b/dotnet/src/webdriver/IE/InternetExplorerDriverService.cs index 70b8c64bfe164..a4ec1856c8a05 100644 --- a/dotnet/src/webdriver/IE/InternetExplorerDriverService.cs +++ b/dotnet/src/webdriver/IE/InternetExplorerDriverService.cs @@ -31,7 +31,7 @@ namespace OpenQA.Selenium.IE public sealed class InternetExplorerDriverService : DriverService { private const string InternetExplorerDriverServiceFileName = "IEDriverServer.exe"; - private static readonly Uri InternetExplorerDriverDownloadUrl = new Uri("http://code.google.com/p/selenium/downloads/list"); + private static readonly Uri InternetExplorerDriverDownloadUrl = new Uri("http://selenium-release.storage.googleapis.com/index.html"); private InternetExplorerDriverLogLevel loggingLevel = InternetExplorerDriverLogLevel.Fatal; private string host = string.Empty; diff --git a/java/client/src/org/openqa/selenium/ie/InternetExplorerDriverService.java b/java/client/src/org/openqa/selenium/ie/InternetExplorerDriverService.java index 146aa16a7432e..fcf18bbda06dd 100644 --- a/java/client/src/org/openqa/selenium/ie/InternetExplorerDriverService.java +++ b/java/client/src/org/openqa/selenium/ie/InternetExplorerDriverService.java @@ -229,7 +229,7 @@ public InternetExplorerDriverService build() { if (exe == null) { exe = findExecutable("IEDriverServer", IE_DRIVER_EXE_PROPERTY, "http://code.google.com/p/selenium/wiki/InternetExplorerDriver", - "http://code.google.com/p/selenium/downloads/list"); + "http://selenium-release.storage.googleapis.com/index.html"); } if (logFile == null) { String logFilePath = System.getProperty(IE_DRIVER_LOGFILE_PROPERTY); diff --git a/javascript/node/selenium-webdriver/README.md b/javascript/node/selenium-webdriver/README.md index 1338922518c6a..557e56d360aca 100644 --- a/javascript/node/selenium-webdriver/README.md +++ b/javascript/node/selenium-webdriver/README.md @@ -11,7 +11,7 @@ implementations you wish to utilize. As of 2.34.0, `selenium-webdriver` natively supports the [ChromeDriver](http://chromedriver.storage.googleapis.com/index.html). Simply download a copy and make sure it can be found on your `PATH`. The other drivers (e.g. Firefox, Internet Explorer, and Safari), still require the -[standalone Selenium server](https://code.google.com/p/selenium/downloads/list). +[standalone Selenium server](http://selenium-release.storage.googleapis.com/index.html). ### Running the tests @@ -22,7 +22,7 @@ sure it can be found on your `PATH`. npm test selenium-webdriver To run the tests against multiple browsers, download the -[Selenium server](https://code.google.com/p/selenium/downloads/list) and +[Selenium server](http://selenium-release.storage.googleapis.com/index.html) and specify its location through the `SELENIUM_SERVER_JAR` environment variable. You can use the `SELENIUM_BROWSER` environment variable to define a comma-separated list of browsers you wish to test against. For example: diff --git a/javascript/node/selenium-webdriver/remote/index.js b/javascript/node/selenium-webdriver/remote/index.js index 227aa8129980e..8c45f8e01efa3 100644 --- a/javascript/node/selenium-webdriver/remote/index.js +++ b/javascript/node/selenium-webdriver/remote/index.js @@ -256,7 +256,7 @@ DriverService.prototype.stop = function() { /** * Manages the life and death of the Selenium standalone server. The server - * may be obtained from https://code.google.com/p/selenium/downloads/list. + * may be obtained from http://selenium-release.storage.googleapis.com/index.html. * @param {string} jar Path to the Selenium server jar. * @param {!SeleniumServer.Options} options Configuration options for the * server. diff --git a/py/selenium/webdriver/ie/service.py b/py/selenium/webdriver/ie/service.py index 4c0dac8a7e277..ad4ea3296c4bc 100644 --- a/py/selenium/webdriver/ie/service.py +++ b/py/selenium/webdriver/ie/service.py @@ -69,7 +69,7 @@ def start(self): except: raise WebDriverException( "IEDriver executable needs to be available in the path. \ - Please download from http://code.google.com/p/selenium/downloads/list\ + Please download from http://selenium-release.storage.googleapis.com/index.html\ and read up at http://code.google.com/p/selenium/wiki/InternetExplorerDriver") count = 0 while not utils.is_url_connectable(self.port): diff --git a/rb/lib/selenium/webdriver/ie/server.rb b/rb/lib/selenium/webdriver/ie/server.rb index 36540a864111f..8fd9aa9a8dae4 100644 --- a/rb/lib/selenium/webdriver/ie/server.rb +++ b/rb/lib/selenium/webdriver/ie/server.rb @@ -11,7 +11,7 @@ def self.get new(binary) else raise Error::WebDriverError, - "Unable to find standalone executable. Please download the IEDriverServer from http://code.google.com/p/selenium/downloads/list and place the executable on your PATH." + "Unable to find standalone executable. Please download the IEDriverServer from http://selenium-release.storage.googleapis.com/index.html and place the executable on your PATH." end end diff --git a/rb/lib/selenium/webdriver/opera/service.rb b/rb/lib/selenium/webdriver/opera/service.rb index 64e526eec607e..3efb12919b6d7 100644 --- a/rb/lib/selenium/webdriver/opera/service.rb +++ b/rb/lib/selenium/webdriver/opera/service.rb @@ -7,7 +7,7 @@ module Opera # class Service - MISSING_TEXT = 'Unable to find the Selenium server jar. Please download the standalone server from http://code.google.com/p/selenium/downloads/list and set the SELENIUM_SERVER_JAR environmental variable to its location. More info at http://code.google.com/p/selenium/wiki/OperaDriver.' + MISSING_TEXT = 'Unable to find the Selenium server jar. Please download the standalone server from http://selenium-release.storage.googleapis.com/index.html and set the SELENIUM_SERVER_JAR environmental variable to its location. More info at http://code.google.com/p/selenium/wiki/OperaDriver.' def self.selenium_server_jar @selenium_server_jar ||= (