JavaPath specifies the path to the JRE.
(path string)
| 125 | |
| 126 | // JavaPath specifies the path to the JRE. |
| 127 | func JavaPath(path string) ServiceOption { |
| 128 | return func(s *Service) error { |
| 129 | s.javaPath = path |
| 130 | return nil |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | // HTMLUnit specifies the path to the JAR for the HTMLUnit driver (compiled |
| 135 | // with its dependencies). |
no outgoing calls
searching dependent graphs…