(template string, args ...interface{})
| 73 | } |
| 74 | |
| 75 | func (wd *remoteWD) requestURL(template string, args ...interface{}) string { |
| 76 | return wd.urlPrefix + fmt.Sprintf(template, args...) |
| 77 | } |
| 78 | |
| 79 | // TODO(minusnine): provide a "sessionURL" function that prepends the |
| 80 | // /session/<id> URL prefix and replace most requestURL (and voidCommand) calls |
no outgoing calls
no test coverage detected