(urlTemplate string, params interface{})
| 279 | } |
| 280 | |
| 281 | func (wd *remoteWD) voidCommand(urlTemplate string, params interface{}) error { |
| 282 | return voidCommand("POST", wd.requestURL(urlTemplate, wd.id), params) |
| 283 | } |
| 284 | |
| 285 | func (wd remoteWD) stringsCommand(urlTemplate string) ([]string, error) { |
| 286 | url := wd.requestURL(urlTemplate, wd.id) |
no test coverage detected