Flowdock
method

register

Importance_0
v6.0.0 - Show latest stable - 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 27
        def register
          define_browser_capabilities(@browser.capabilities)

          Capybara.register_driver @name do |app|
            case @name
            when :selenium then register_selenium(app)
            when :poltergeist then register_poltergeist(app)
            when :webkit then register_webkit(app)
            end
          end
        end
Register or log in to add new notes.