Sha256: 17b28c090187e6731a33a6aa7c36dc47b434baf7ce319fc972484431870f4c99

Contents?: true

Size: 1.62 KB

Versions: 89

Compression:

Stored size: 1.62 KB

Contents

# frozen_string_literal: true

module ActionDispatch
  module SystemTesting
    class Driver # :nodoc:
      def initialize(name, **options)
        @name = name
        @browser = Browser.new(options[:using])
        @screen_size = options[:screen_size]
        @options = options[:options]
      end

      def use
        register if registerable?

        setup
      end

      private
        def registerable?
          [:selenium, :poltergeist, :webkit].include?(@name)
        end

        def register
          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

        def browser_options
          @options.merge(options: @browser.options).compact
        end

        def register_selenium(app)
          Capybara::Selenium::Driver.new(app, { browser: @browser.type }.merge(browser_options)).tap do |driver|
            driver.browser.manage.window.size = Selenium::WebDriver::Dimension.new(*@screen_size)
          end
        end

        def register_poltergeist(app)
          Capybara::Poltergeist::Driver.new(app, @options.merge(window_size: @screen_size))
        end

        def register_webkit(app)
          Capybara::Webkit::Driver.new(app, Capybara::Webkit::Configuration.to_hash.merge(@options)).tap do |driver|
            driver.resize_window_to(driver.current_window_handle, *@screen_size)
          end
        end

        def setup
          Capybara.current_driver = @name
        end
    end
  end
end

Version data entries

89 entries across 89 versions & 5 rubygems

Version Path
actionpack-5.2.8.1 lib/action_dispatch/system_testing/driver.rb
actionpack-5.2.8 lib/action_dispatch/system_testing/driver.rb
actionpack-5.2.7.1 lib/action_dispatch/system_testing/driver.rb
actionpack-5.2.7 lib/action_dispatch/system_testing/driver.rb
actionpack-5.2.6.3 lib/action_dispatch/system_testing/driver.rb
actionpack-5.2.6.2 lib/action_dispatch/system_testing/driver.rb
actionpack-5.2.6.1 lib/action_dispatch/system_testing/driver.rb
actionpack-5.2.6 lib/action_dispatch/system_testing/driver.rb
actionpack-5.2.4.6 lib/action_dispatch/system_testing/driver.rb
actionpack-5.2.5 lib/action_dispatch/system_testing/driver.rb
actionpack-5.2.4.5 lib/action_dispatch/system_testing/driver.rb
actionpack-5.2.4.4 lib/action_dispatch/system_testing/driver.rb
actionpack-5.2.4.3 lib/action_dispatch/system_testing/driver.rb
actionpack-5.2.4.2 lib/action_dispatch/system_testing/driver.rb
actionpack-5.2.4.1 lib/action_dispatch/system_testing/driver.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/actionpack-5.2.3/lib/action_dispatch/system_testing/driver.rb
actionpack-5.2.4 lib/action_dispatch/system_testing/driver.rb
actionpack-5.2.4.rc1 lib/action_dispatch/system_testing/driver.rb
zuora_connect_ui-0.9.2 vendor/ruby/2.6.0/gems/actionpack-5.2.3/lib/action_dispatch/system_testing/driver.rb
zuora_connect_ui-0.9.1 vendor/ruby/2.6.0/gems/actionpack-5.2.3/lib/action_dispatch/system_testing/driver.rb