@@ -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
private String serviceUrl ;
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
private String serviceHost ;
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
private Integer servicePort ;
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\" " )
64
66
private String serviceStatusEndpoint ;
0 commit comments