method

register

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: Driver
register() 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/driver.rb, line 36
        def register
          @browser&.configure(&@capabilities)

          Capybara.register_driver name do |app|
            case @driver_type
            when :selenium then register_selenium(app)
            when :cuprite then register_cuprite(app)
            when :rack_test then register_rack_test(app)
            when :playwright then register_playwright(app)
            end
          end
        end
Register or log in to add new notes.