Class: ActionDispatch::SystemTesting::Driver
- Inherits:
-
Object
- Object
- ActionDispatch::SystemTesting::Driver
- Defined in:
- lib/action_dispatch/system_testing/driver.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(driver_type, **options, &capabilities) ⇒ Driver
constructor
A new instance of Driver.
- #use ⇒ Object
Constructor Details
#initialize(driver_type, **options, &capabilities) ⇒ Driver
Returns a new instance of Driver.
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/action_dispatch/system_testing/driver.rb', line 8 def initialize(driver_type, **, &capabilities) @driver_type = driver_type @screen_size = [:screen_size] @options = [:options] || {} @name = @options.delete(:name) || driver_type @capabilities = capabilities if driver_type == :selenium gem "selenium-webdriver", ">= 4.0.0" require "selenium/webdriver" @browser = Browser.new([:using]) @browser.preload else @browser = nil end end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
6 7 8 |
# File 'lib/action_dispatch/system_testing/driver.rb', line 6 def name @name end |
Instance Method Details
#use ⇒ Object
25 26 27 28 29 |
# File 'lib/action_dispatch/system_testing/driver.rb', line 25 def use register if registerable? setup end |