class ActionDispatch::SystemTesting::Browser

def resolve_driver_path(namespace)

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