Async::WebDriver SourceAsyncWebDriverBridgeChromeDriver

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, "chromedriver"),
		"--port=#{self.port}",
	].compact
end