(by, value string)
| 755 | } |
| 756 | |
| 757 | func (wd *remoteWD) FindElements(by, value string) ([]WebElement, error) { |
| 758 | response, err := wd.find(by, value, "s", "") |
| 759 | if err != nil { |
| 760 | return nil, err |
| 761 | } |
| 762 | |
| 763 | return wd.DecodeElements(response) |
| 764 | } |
| 765 | |
| 766 | func (wd *remoteWD) Close() error { |
| 767 | url := wd.requestURL("/session/%s/window", wd.id) |
nothing calls this directly
no test coverage detected