Class: ActionDispatch::SystemTesting::Browser

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

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ Browser

Returns a new instance of Browser.



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

def initialize(name)
  @name = name
  set_default_options
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



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

def name
  @name
end

Instance Method Details

#configure {|options| ... } ⇒ Object

Yields:



34
35
36
# File 'lib/action_dispatch/system_testing/browser.rb', line 34

def configure
  yield options if block_given?
end

#optionsObject



24
25
26
27
28
29
30
31
32
# File 'lib/action_dispatch/system_testing/browser.rb', line 24

def options
  @options ||=
    case type
    when :chrome
      ::Selenium::WebDriver::Chrome::Options.new
    when :firefox
      ::Selenium::WebDriver::Firefox::Options.new
    end
end

#preloadObject

driver_path is lazily initialized by default. Eagerly set it to avoid race conditions when using parallel tests.



40
41
42
43
44
45
46
47
# File 'lib/action_dispatch/system_testing/browser.rb', line 40

def preload
  case type
  when :chrome
    resolve_driver_path(::Selenium::WebDriver::Chrome)
  when :firefox
    resolve_driver_path(::Selenium::WebDriver::Firefox)
  end
end

#typeObject



13
14
15
16
17
18
19
20
21
22
# File 'lib/action_dispatch/system_testing/browser.rb', line 13

def type
  case name
  when :headless_chrome
    :chrome
  when :headless_firefox
    :firefox
  else
    name
  end
end