Class: ActionDispatch::SystemTesting::Driver

Inherits:
Object
  • Object
show all
Defined in:
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.



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/action_dispatch/system_testing/driver.rb', line 10

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 unless @options[:browser] == :remote
  else
    @browser = nil
  end
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



8
9
10
# File 'lib/action_dispatch/system_testing/driver.rb', line 8

def name
  @name
end

Instance Method Details

#useObject



27
28
29
30
31
# File 'lib/action_dispatch/system_testing/driver.rb', line 27

def use
  register if registerable?

  setup
end