Class: ActionDispatch::SystemTesting::Driver

Inherits:
Object
  • Object
show all
Defined in:
actionpack/lib/action_dispatch/system_testing/driver.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

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 'actionpack/lib/action_dispatch/system_testing/driver.rb', line 8

def initialize(driver_type, **options, &capabilities)
  @driver_type = driver_type
  @screen_size = options[:screen_size]
  @options = 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(options[:using])
    @browser.preload
  else
    @browser = nil
  end
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name



6
7
8
# File 'actionpack/lib/action_dispatch/system_testing/driver.rb', line 6

def name
  @name
end

Instance Method Details

#useObject



25
26
27
28
29
# File 'actionpack/lib/action_dispatch/system_testing/driver.rb', line 25

def use
  register if registerable?

  setup
end