Class: ActionDispatch::SystemTesting::Browser
- Defined in:
- actionpack/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
- #configure {|options| ... } ⇒ Object
- 
  
    
      #initialize(name)  ⇒ Browser 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Browser. 
- #options ⇒ Object
- 
  
    
      #preload  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    driver_path is lazily initialized by default. 
- #type ⇒ Object
Constructor Details
#initialize(name) ⇒ Browser
Returns a new instance of Browser.
| 10 11 12 | # File 'actionpack/lib/action_dispatch/system_testing/browser.rb', line 10 def initialize(name) @name = name end | 
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
| 8 9 10 | # File 'actionpack/lib/action_dispatch/system_testing/browser.rb', line 8 def name @name end | 
Instance Method Details
#configure {|options| ... } ⇒ Object
| 35 36 37 | # File 'actionpack/lib/action_dispatch/system_testing/browser.rb', line 35 def configure yield if block_given? end | 
#options ⇒ Object
| 25 26 27 28 29 30 31 32 33 | # File 'actionpack/lib/action_dispatch/system_testing/browser.rb', line 25 def ||= case type when :chrome when :firefox end end | 
#preload ⇒ Object
driver_path is lazily initialized by default. Eagerly set it to avoid race conditions when using parallel tests.
| 41 42 43 44 45 46 47 48 | # File 'actionpack/lib/action_dispatch/system_testing/browser.rb', line 41 def preload case type when :chrome resolve_driver_path(::Selenium::WebDriver::Chrome) when :firefox resolve_driver_path(::Selenium::WebDriver::Firefox) end end | 
#type ⇒ Object
| 14 15 16 17 18 19 20 21 22 23 | # File 'actionpack/lib/action_dispatch/system_testing/browser.rb', line 14 def type case name when :headless_chrome :chrome when :headless_firefox :firefox else name end end |