You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: java/src/org/openqa/selenium/grid/node/relay/RelayFlags.java
+8-6Lines changed: 8 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -37,28 +37,30 @@ public class RelayFlags implements HasRoles {
37
37
38
38
@Parameter(
39
39
names = {"--service-url"},
40
-
description = "URL for connecting to the service"
40
+
description = "URL for connecting to the service that supports WebDriver commands, "
41
+
+ "like an Appium server or a cloud service."
41
42
)
42
-
@ConfigValue(section = RELAY_SECTION, name = "url", example = "http://localhost:67853")
43
+
@ConfigValue(section = RELAY_SECTION, name = "url", example = "http://localhost:4723")
43
44
privateStringserviceUrl;
44
45
45
46
@Parameter(
46
47
names = {"--service-host"},
47
-
description = "Host name where the service is running"
48
+
description = "Host name where the service that supports WebDriver commands is running"
48
49
)
49
50
@ConfigValue(section = RELAY_SECTION, name = "host", example = "\"localhost\"")
50
51
privateStringserviceHost;
51
52
52
53
@Parameter(
53
54
names = {"--service-port"},
54
-
description = "Port where the service is running"
55
+
description = "Port where the service that supports WebDriver commands is running"
55
56
)
56
-
@ConfigValue(section = RELAY_SECTION, name = "port", example = "67853")
57
+
@ConfigValue(section = RELAY_SECTION, name = "port", example = "4723")
57
58
privateIntegerservicePort;
58
59
59
60
@Parameter(
60
61
names = {"--service-status-endpoint"},
61
-
description = "Endpoint to query the service status, an HTTP 200 response is expected"
62
+
description = "Endpoint to query the WebDriver service status, an HTTP 200 response "
63
+
+ "is expected"
62
64
)
63
65
@ConfigValue(section = RELAY_SECTION, name = "status-endpoint", example = "\"/status\"")
0 commit comments