TODO(minusnine): add a test for Click.
(button int)
| 1024 | |
| 1025 | // TODO(minusnine): add a test for Click. |
| 1026 | func (wd *remoteWD) Click(button int) error { |
| 1027 | return wd.voidCommand("/session/%s/click", map[string]int{ |
| 1028 | "button": button, |
| 1029 | }) |
| 1030 | } |
| 1031 | |
| 1032 | // TODO(minusnine): add a test for DoubleClick. |
| 1033 | func (wd *remoteWD) DoubleClick() error { |
nothing calls this directly
no test coverage detected