(cookie *Cookie)
| 1005 | } |
| 1006 | |
| 1007 | func (wd *remoteWD) AddCookie(cookie *Cookie) error { |
| 1008 | return wd.voidCommand("/session/%s/cookie", map[string]*Cookie{ |
| 1009 | "cookie": cookie, |
| 1010 | }) |
| 1011 | } |
| 1012 | |
| 1013 | func (wd *remoteWD) DeleteAllCookies() error { |
| 1014 | url := wd.requestURL("/session/%s/cookie", wd.id) |
nothing calls this directly
no test coverage detected