Method: Selenium::WebDriver::ServiceManager#initialize

Defined in:
lib/selenium/webdriver/common/service_manager.rb

#initialize(config) ⇒ ServiceManager

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

End users should use a class method for the desired driver, rather than using this directly.

[View source]

39
40
41
42
43
44
45
46
47
48
# File 'lib/selenium/webdriver/common/service_manager.rb', line 39

def initialize(config)
  @executable_path = config.executable_path
  @host = Platform.localhost
  @port = config.port
  @io = config.log
  @extra_args = config.args
  @shutdown_supported = config.shutdown_supported

  raise Error::WebDriverError, "invalid port: #{@port}" if @port < 1
end