HTMLUnit specifies the path to the JAR for the HTMLUnit driver (compiled with its dependencies). https://github.com/SeleniumHQ/htmlunit-driver/releases
(path string)
| 136 | // |
| 137 | // https://github.com/SeleniumHQ/htmlunit-driver/releases |
| 138 | func HTMLUnit(path string) ServiceOption { |
| 139 | return func(s *Service) error { |
| 140 | s.htmlUnitPath = path |
| 141 | return nil |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | // Service controls a locally-running Selenium subprocess. |
| 146 | type Service struct { |
no outgoing calls
searching dependent graphs…