Skip to content

Commit

Permalink
Fixed references to chromedriver website
Browse files Browse the repository at this point in the history
Changed all references to the chromedriver project Google Sites URL
(https://sites.google.com/a/chromium.org/chromedriver/) to be to the
project's actual domain and official site,
https://chromedriver.chromium.org/.

Fixes #7630

Signed-off-by: Alexei Barantsev <[email protected]>
  • Loading branch information
pbeart authored and barancev committed Oct 3, 2019
1 parent 2d1e0bb commit 0d2a9b4
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A clear and concise description of what the bug is.
FIREFOX 48+ IS ONLY COMPATIBLE WITH GECKODRIVER.
If the issue is with Google Chrome consider logging an issue with chromedriver instead:
https://sites.google.com/a/chromium.org/chromedriver/help
https://chromedriver.chromium.org/help
If the issue is with Firefox GeckoDriver (aka Marionette) consider logging an issue with Mozilla:
https://bugzilla.mozilla.org/buglist.cgi?product=Testing&component=Marionette
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/regression.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A clear and concise description of what the regression is.
FIREFOX 48+ IS ONLY COMPATIBLE WITH GECKODRIVER.
If the issue is with Google Chrome consider logging an issue with chromedriver instead:
https://sites.google.com/a/chromium.org/chromedriver/help
https://chromedriver.chromium.org/help
If the issue is with Firefox GeckoDriver (aka Marionette) consider logging an issue with Mozilla:
https://bugzilla.mozilla.org/buglist.cgi?product=Testing&component=Marionette
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ correct binaries on your system.
### Before Building

Ensure that you have Chrome installed and the
[`chromedriver` ](https://sites.google.com/a/chromium.org/chromedriver/downloads) that matches
[`chromedriver` ](https://chromedriver.chromium.org/downloads) that matches
your Chrome version available on your `$PATH`. You may have to update this from time to time.

### Common Build Targets
Expand Down
2 changes: 1 addition & 1 deletion javascript/node/selenium-webdriver/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ continue to be supported, but will require setting the `--harmony` flag.
due to a previously uncaught error within the frame.
* FIXED: 8496: Extended the `chrome.Options` API to cover all configuration
options (e.g. mobile emulation and performance logging) documented on the
ChromeDriver [project site](https://sites.google.com/a/chromium.org/chromedriver/capabilities).
ChromeDriver [project site](https://chromedriver.chromium.org/capabilities).

## v2.45.0

Expand Down
10 changes: 5 additions & 5 deletions javascript/node/selenium-webdriver/chrome.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,10 @@
* [Refer to the ChromeDriver site] for more information on using the
* [ChromeDriver with Android][android].
*
* [ChromeDriver]: https://sites.google.com/a/chromium.org/chromedriver/
* [ChromeDriver]: https://chromedriver.chromium.org/
* [ChromeDriver release]: http://chromedriver.storage.googleapis.com/index.html
* [PATH]: http://en.wikipedia.org/wiki/PATH_%28variable%29
* [android]: https://sites.google.com/a/chromium.org/chromedriver/getting-started/getting-started---android
* [android]: https://chromedriver.chromium.org/getting-started/getting-started---android
* [webview]: https://developer.chrome.com/multidevice/webview/overview
*/

Expand Down Expand Up @@ -215,7 +215,7 @@ function locateSynchronously() {

/**
* Creates {@link selenium-webdriver/remote.DriverService} instances that manage
* a [ChromeDriver](https://sites.google.com/a/chromium.org/chromedriver/)
* a [ChromeDriver](https://chromedriver.chromium.org/)
* server in a child process.
*/
class ServiceBuilder extends remote.DriverService.Builder {
Expand Down Expand Up @@ -512,7 +512,7 @@ class Options extends Capabilities {
/**
* Sets the name of the activity hosting a Chrome-based Android WebView. This
* option must be set to connect to an [Android WebView](
* https://sites.google.com/a/chromium.org/chromedriver/getting-started/getting-started---android)
* https://chromedriver.chromium.org/getting-started/getting-started---android)
*
* @param {string} name The activity name.
* @return {!Options} A self reference.
Expand Down Expand Up @@ -633,7 +633,7 @@ class Options extends Capabilities {
* let driver = chrome.Driver.createSession(options);
*
*
* [em]: https://sites.google.com/a/chromium.org/chromedriver/mobile-emulation
* [em]: https://chromedriver.chromium.org/mobile-emulation
* [devem]: https://developer.chrome.com/devtools/docs/device-mode
*
* @param {?({deviceName: string}|
Expand Down
2 changes: 1 addition & 1 deletion javascript/node/selenium-webdriver/example/headless.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*
* To run with Chrome, ensure you have Chrome 59+ installed and that
* chromedriver 2.30+ is present on your system PATH:
* <https://sites.google.com/a/chromium.org/chromedriver/downloads>
* <https://chromedriver.chromium.org/downloads>
*
* SELENIUM_BROWSER=chrome node selenium-webdriver/example/headless.js
*
Expand Down
2 changes: 1 addition & 1 deletion javascript/node/selenium-webdriver/lib/logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
* **NOTE:** Only a few browsers support the remote logging API (notably
* Firefox and Chrome). Firefox supports basic logging functionality, while
* Chrome exposes robust
* [performance logging](https://sites.google.com/a/chromium.org/chromedriver/logging)
* [performance logging](https://chromedriver.chromium.org/logging)
* options. Remote logging is still considered a non-standard feature, and the
* APIs exposed by this module for it are non-frozen. This module will be
* updated, possibly breaking backwards-compatibility, once logging is
Expand Down
2 changes: 1 addition & 1 deletion javascript/webdriver/logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
* **NOTE:** Only a few browsers support the remote logging API (notably
* Firefox and Chrome). Firefox supports basic logging functionality, while
* Chrome exposes robust
* [performance logging](https://sites.google.com/a/chromium.org/chromedriver/logging)
* [performance logging](https://chromedriver.chromium.org/logging)
* options. Remote logging is still considered a non-standard feature, and the
* APIs exposed by this module for it are non-frozen. Once logging is officially
* defined by the [W3C WebDriver spec](http://www.w3.org/TR/webdriver/), this
Expand Down
2 changes: 1 addition & 1 deletion py/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Failure to observe this step will give you an error `selenium.common.exceptions.
Other supported browsers will have their own drivers available. Links to some of the more popular browser drivers follow.

+--------------+-----------------------------------------------------------------------+
| **Chrome**: | https://sites.google.com/a/chromium.org/chromedriver/downloads |
| **Chrome**: | https://chromedriver.chromium.org/downloads |
+--------------+-----------------------------------------------------------------------+
| **Edge**: | https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/ |
+--------------+-----------------------------------------------------------------------+
Expand Down
2 changes: 1 addition & 1 deletion py/selenium/webdriver/chrome/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ def __init__(self, executable_path, port=0, service_args=None,
service_args,
log_path,
env,
"Please see https://sites.google.com/a/chromium.org/chromedriver/home")
"Please see https://chromedriver.chromium.org/home")

0 comments on commit 0d2a9b4

Please sign in to comment.