Skip to content

Commit 8a0a2ce

Browse files
Yi Zengandreastt
authored andcommitted
Update download link to googleapis.com
Signed-off-by: Andreas Tolfsen <ato@mozilla.com>
1 parent e71f03f commit 8a0a2ce

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

dotnet/src/webdriver/IE/InternetExplorerDriverService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace OpenQA.Selenium.IE
3131
public sealed class InternetExplorerDriverService : DriverService
3232
{
3333
private const string InternetExplorerDriverServiceFileName = "IEDriverServer.exe";
34-
private static readonly Uri InternetExplorerDriverDownloadUrl = new Uri("http://code.google.com/p/selenium/downloads/list");
34+
private static readonly Uri InternetExplorerDriverDownloadUrl = new Uri("http://selenium-release.storage.googleapis.com/index.html");
3535

3636
private InternetExplorerDriverLogLevel loggingLevel = InternetExplorerDriverLogLevel.Fatal;
3737
private string host = string.Empty;

java/client/src/org/openqa/selenium/ie/InternetExplorerDriverService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ public InternetExplorerDriverService build() {
229229
if (exe == null) {
230230
exe = findExecutable("IEDriverServer", IE_DRIVER_EXE_PROPERTY,
231231
"http://code.google.com/p/selenium/wiki/InternetExplorerDriver",
232-
"http://code.google.com/p/selenium/downloads/list");
232+
"http://selenium-release.storage.googleapis.com/index.html");
233233
}
234234
if (logFile == null) {
235235
String logFilePath = System.getProperty(IE_DRIVER_LOGFILE_PROPERTY);

javascript/node/selenium-webdriver/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ implementations you wish to utilize. As of 2.34.0, `selenium-webdriver`
1111
natively supports the [ChromeDriver](http://chromedriver.storage.googleapis.com/index.html).
1212
Simply download a copy and make sure it can be found on your `PATH`. The other
1313
drivers (e.g. Firefox, Internet Explorer, and Safari), still require the
14-
[standalone Selenium server](https://code.google.com/p/selenium/downloads/list).
14+
[standalone Selenium server](http://selenium-release.storage.googleapis.com/index.html).
1515

1616
### Running the tests
1717

@@ -22,7 +22,7 @@ sure it can be found on your `PATH`.
2222
npm test selenium-webdriver
2323

2424
To run the tests against multiple browsers, download the
25-
[Selenium server](https://code.google.com/p/selenium/downloads/list) and
25+
[Selenium server](http://selenium-release.storage.googleapis.com/index.html) and
2626
specify its location through the `SELENIUM_SERVER_JAR` environment variable.
2727
You can use the `SELENIUM_BROWSER` environment variable to define a
2828
comma-separated list of browsers you wish to test against. For example:

javascript/node/selenium-webdriver/remote/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ DriverService.prototype.stop = function() {
256256

257257
/**
258258
* Manages the life and death of the Selenium standalone server. The server
259-
* may be obtained from https://code.google.com/p/selenium/downloads/list.
259+
* may be obtained from http://selenium-release.storage.googleapis.com/index.html.
260260
* @param {string} jar Path to the Selenium server jar.
261261
* @param {!SeleniumServer.Options} options Configuration options for the
262262
* server.

py/selenium/webdriver/ie/service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def start(self):
6969
except:
7070
raise WebDriverException(
7171
"IEDriver executable needs to be available in the path. \
72-
Please download from http://code.google.com/p/selenium/downloads/list\
72+
Please download from http://selenium-release.storage.googleapis.com/index.html\
7373
and read up at http://code.google.com/p/selenium/wiki/InternetExplorerDriver")
7474
count = 0
7575
while not utils.is_url_connectable(self.port):

rb/lib/selenium/webdriver/ie/server.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def self.get
1111
new(binary)
1212
else
1313
raise Error::WebDriverError,
14-
"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."
14+
"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."
1515
end
1616
end
1717

rb/lib/selenium/webdriver/opera/service.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module Opera
77
#
88

99
class Service
10-
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.'
10+
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.'
1111

1212
def self.selenium_server_jar
1313
@selenium_server_jar ||= (

0 commit comments

Comments
 (0)