class Selenium::WebDriver::Safari::Service

Constants

DEFAULT_PORT
DRIVER_PATH_ENV_KEY
EXECUTABLE
SHUTDOWN_SUPPORTED

Public Class Methods

new(path: nil, port: nil, log: nil, args: nil) click to toggle source
Calls superclass method Selenium::WebDriver::Service::new
# File lib/selenium/webdriver/safari/service.rb, line 28
def initialize(path: nil, port: nil, log: nil, args: nil)
  raise Error::WebDriverError, 'Safari Service does not support setting log output' if log

  super
end

Public Instance Methods

log=(*) click to toggle source
# File lib/selenium/webdriver/safari/service.rb, line 34
def log=(*)
  raise Error::WebDriverError, 'Safari Service does not support setting log output'
end