Class: ActionDispatch::SystemTesting::Browser
- Inherits:
-
Object
- Object
- ActionDispatch::SystemTesting::Browser
- Defined in:
- lib/action_dispatch/system_testing/browser.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name) ⇒ Browser
constructor
A new instance of Browser.
- #options ⇒ Object
- #type ⇒ Object
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
#name ⇒ Object (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
#options ⇒ Object
23 24 25 26 27 28 29 30 |
# File 'lib/action_dispatch/system_testing/browser.rb', line 23 def case name when :headless_chrome when :headless_firefox end end |
#type ⇒ Object
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 |