Class: Selenium::WebDriver::Safari::Driver Private

Inherits:
Driver
  • Object
show all
Includes:
LocalDriver
Defined in:
rb/lib/selenium/webdriver/safari/driver.rb

Overview

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

Driver implementation for Safari.

Constant Summary collapse

EXTENSIONS =

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

[DriverExtensions::HasDebugger,
DriverExtensions::HasApplePermissions,
DriverExtensions::HasWebStorage].freeze

Constants included from Selenium::WebDriver::SearchContext

Selenium::WebDriver::SearchContext::FINDERS

Instance Method Summary collapse

Methods included from LocalDriver

#initialize_local_driver, #process_options

Methods inherited from Driver

#[], #action, #add_virtual_authenticator, #capabilities, #close, #current_url, #execute_async_script, #execute_script, for, #get, #inspect, #manage, #navigate, #page_source, #quit, #ref, #status, #switch_to, #title, #window_handle, #window_handles

Methods included from TakesScreenshot

#save_screenshot, #screenshot_as

Methods included from Selenium::WebDriver::SearchContext

#find_element, #find_elements

Constructor Details

#initialize(options: nil, service: nil, url: nil, **opts) ⇒ Driver

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.

Returns a new instance of Driver.



35
36
37
38
# File 'rb/lib/selenium/webdriver/safari/driver.rb', line 35

def initialize(options: nil, service: nil, url: nil, **opts)
  caps, url = initialize_local_driver(options, service, url)
  super(caps: caps, url: url, **opts)
end

Instance Method Details

#browserObject

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.



40
41
42
# File 'rb/lib/selenium/webdriver/safari/driver.rb', line 40

def browser
  :safari
end