Class: ActionDispatch::SystemTesting::Browser
Do not use. This class is for internal use only.
Relationships & Source Files | |
Inherits: | Object |
Defined in: | actionpack/lib/action_dispatch/system_testing/browser.rb |
Class Method Summary
- .new(name) ⇒ Browser constructor
Instance Attribute Summary
- #name readonly
Instance Method Summary
- #configure {|options| ... }
- #options
-
#preload
driver_path is lazily initialized by default.
- #type
- #default_chrome_options private
- #default_firefox_options private
- #resolve_driver_path(namespace) private
Constructor Details
.new(name) ⇒ Browser
Instance Attribute Details
#name (readonly)
[ GitHub ]# File 'actionpack/lib/action_dispatch/system_testing/browser.rb', line 8
attr_reader :name
Instance Method Details
#configure {|options| ... }
# File 'actionpack/lib/action_dispatch/system_testing/browser.rb', line 35
def configure yield if block_given? end
#default_chrome_options (private)
[ GitHub ]#default_firefox_options (private)
[ GitHub ]#options
[ GitHub ]# File 'actionpack/lib/action_dispatch/system_testing/browser.rb', line 25
def @options ||= case type when :chrome when :firefox end end
#preload
driver_path is lazily initialized by default. Eagerly set it to avoid race conditions when using parallel tests.
# 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
#resolve_driver_path(namespace) (private)
[ GitHub ]# File 'actionpack/lib/action_dispatch/system_testing/browser.rb', line 65
def resolve_driver_path(namespace) # The path method has been deprecated in 4.20.0 if Gem::Version.new(::Selenium::WebDriver::VERSION) >= Gem::Version.new("4.20.0") namespace::Service.driver_path = ::Selenium::WebDriver::DriverFinder.new(, namespace::Service.new).driver_path else namespace::Service.driver_path = ::Selenium::WebDriver::DriverFinder.path(, namespace::Service) end end