method

resolve_driver_path

Importance_0
v7.2.3 - Show latest stable - 0 notes - Class: Browser
resolve_driver_path(namespace) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/system_testing/browser.rb, line 74
        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(options, namespace::Service.new).driver_path
          else
            namespace::Service.driver_path = ::Selenium::WebDriver::DriverFinder.path(options, namespace::Service)
          end
        end
Register or log in to add new notes.