Module: Selenium::WebDriver::LocalDriver

Included in:
Chrome::Driver, Edge::Driver, Firefox::Driver, IE::Driver, Safari::Driver
Defined in:
lib/selenium/webdriver/common/local_driver.rb

Instance Method Summary collapse

Instance Method Details

#initialize_local_driver(options, service, url) ⇒ Object

Raises:

  • (ArgumentError)


23
24
25
26
27
28
29
30
31
# File 'lib/selenium/webdriver/common/local_driver.rb', line 23

def initialize_local_driver(options, service, url)
  raise ArgumentError, "Can't initialize #{self.class} with :url" if url

  service ||= Service.send(browser)
  caps = process_options(options, service)
  url = service_url(service)

  [caps, url]
end

#process_options(options, service) ⇒ Object



33
34
35
36
37
38
39
40
41
42
43
# File 'lib/selenium/webdriver/common/local_driver.rb', line 33

def process_options(options, service)
  default_options = Options.send(browser)
  options ||= default_options

  unless options.is_a?(default_options.class)
    raise ArgumentError, ":options must be an instance of #{default_options.class}"
  end

  service.executable_path ||= WebDriver::DriverFinder.path(options, service.class)
  options.as_json
end