Skip to content

Commit

Permalink
Update download link to googleapis.com
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Tolfsen <ato@mozilla.com>
  • Loading branch information
Yi Zeng authored and andreastt committed Feb 26, 2014
1 parent e71f03f commit 8a0a2ce
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/IE/InternetExplorerDriverService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions javascript/node/selenium-webdriver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion javascript/node/selenium-webdriver/remote/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion py/selenium/webdriver/ie/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion rb/lib/selenium/webdriver/ie/server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion rb/lib/selenium/webdriver/opera/service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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 ||= (
Expand Down

0 comments on commit 8a0a2ce

Please sign in to comment.