class Driver
Definitions
def arguments(**options)
Signature
-
returns
Array(String)
The arguments to pass to the
chromedriver
executable.
Implementation
def arguments(**options)
[
options.fetch(:path, "geckodriver"),
"--port", self.port.to_s,
].compact
end