Skip to content

Commit 07ee491

Browse files
committed
Replacing references to seleniumhq.org with selenium.dev [skip ci]
1 parent b24cf9d commit 07ee491

File tree

17 files changed

+26
-26
lines changed

17 files changed

+26
-26
lines changed

common/src/web/inputs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ <h1>Testing Inputs</h1>
1616
<input name="search_input" type="search" value="search" /><br/>
1717
<input name="tel_input" type="tel" value="911" /><br/>
1818
<input name="text_input" type="text" value="text input" /><br/>
19-
<input name="url_input" type="url" value="http://seleniumhq.org/" /><br/>
19+
<input name="url_input" type="url" value="https://selenium.dev/" /><br/>
2020
<br/>
2121
<input name="checkbox_input" type="checkbox" value="Checkbox" checked /><br/>
2222
<input name="radio_input" type="radio" value="radio1" checked /><br/>

java/client/src/com/thoughtworks/selenium/DefaultSelenium.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public void start() {
110110
if (message != null && message.startsWith("Connection refused")) {
111111
throw new RuntimeException("Could not contact Selenium Server; have you started it on '" +
112112
commandProcessor.getRemoteControlServerLocation() +
113-
"' ?\nRead more at http://seleniumhq.org/projects/remote-control/not-started.html\n" +
113+
"' ?\nRead more at https://selenium.dev/documentation/en/legacy_docs/selenium_rc/#unable-to-connect-to-server\n" +
114114
e.getMessage());
115115
}
116116
throw new RuntimeException("Could not start Selenium session: " + e.getMessage(), e);

java/client/src/org/openqa/selenium/InvalidSelectorException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
public class InvalidSelectorException extends NoSuchElementException {
2929

3030
private static final String SUPPORT_URL =
31-
BASE_SUPPORT_URL + "invalid_selector_exception.html";
31+
BASE_SUPPORT_URL + "#invalid_selector_exception";
3232

3333
public InvalidSelectorException(String reason) {
3434
super(reason);

java/client/src/org/openqa/selenium/NoSuchElementException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
public class NoSuchElementException extends NotFoundException {
2525

2626
private static final String SUPPORT_URL =
27-
BASE_SUPPORT_URL + "no_such_element.html";
27+
BASE_SUPPORT_URL + "#no_such_element";
2828

2929
public NoSuchElementException(String reason) {
3030
super(reason);

java/client/src/org/openqa/selenium/StaleElementReferenceException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
public class StaleElementReferenceException extends WebDriverException {
2525

2626
private static final String SUPPORT_URL =
27-
BASE_SUPPORT_URL + "stale_element_reference.html";
27+
BASE_SUPPORT_URL + "#stale_element_reference";
2828

2929
public StaleElementReferenceException(String message) {
3030
super(message);

java/client/src/org/openqa/selenium/WebDriverException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class WebDriverException extends RuntimeException {
2626

2727
public static final String SESSION_ID = "Session ID";
2828
public static final String DRIVER_INFO = "Driver info";
29-
protected static final String BASE_SUPPORT_URL = "https://www.seleniumhq.org/exceptions/";
29+
protected static final String BASE_SUPPORT_URL = "https://selenium.dev/exceptions/";
3030

3131
private final static String HOST_NAME = HostIdentifier.getHostName();
3232
private final static String HOST_ADDRESS = HostIdentifier.getHostAddress();

java/client/src/org/openqa/selenium/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<name>{groupId}:{artifactId}</name>
1111
<description>Selenium automates browsers. That's it! What you do with that power is entirely up to you.</description>
12-
<url>http://www.seleniumhq.org/</url>
12+
<url>https://selenium.dev/</url>
1313

1414
<licenses>
1515
<license>

java/client/test/org/openqa/selenium/ClearTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public void shouldBeAbleToClearTextInput() {
128128

129129
@Test
130130
public void shouldBeAbleToClearUrlInput() {
131-
shouldBeAbleToClearInput(By.name("url_input"), "http://seleniumhq.org/");
131+
shouldBeAbleToClearInput(By.name("url_input"), "http://selenium.dev/");
132132
}
133133

134134
@Test

javascript/node/selenium-webdriver/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Additional resources include
117117

118118
- the #selenium channel on freenode IRC
119119
- the [[email protected]][users] list
120-
- [SeleniumHQ](http://www.seleniumhq.org/docs/) documentation
120+
- [SeleniumHQ](https://selenium.dev/documentation/) documentation
121121

122122
## Contributing
123123

javascript/node/selenium-webdriver/lib/input.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Key.chord = function(...keys) {
152152
* elements. Of particular note is the
153153
* {@link selenium-webdriver/remote.FileDetector}, which should be used when
154154
* running against a remote
155-
* [Selenium Server](http://docs.seleniumhq.org/download/).
155+
* [Selenium Server](https://selenium.dev/downloads/).
156156
*/
157157
class FileDetector {
158158

0 commit comments

Comments
 (0)