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
# File 'lib/action_dispatch/system_testing/browser.rb', line 8

def initialize(name)
  @name = name
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

#optionsObject



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

def options
  case name
  when :headless_chrome
    headless_chrome_browser_options
  when :headless_firefox
    headless_firefox_browser_options
  end
end

#typeObject



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

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