Sha256: 496eb19cb63b2f90c1cca0b625333f8508506b3ad334b324c0ed0f85abfe87ce

Contents?: true

Size: 1.91 KB

Versions: 29

Compression:

Stored size: 1.91 KB

Contents

# frozen_string_literal: true

module ActionDispatch
  module SystemTesting
    class Browser # :nodoc:
      attr_reader :name, :options

      def initialize(name)
        @name = name
        set_default_options
      end

      def type
        case name
        when :headless_chrome
          :chrome
        when :headless_firefox
          :firefox
        else
          name
        end
      end

      def configure
        initialize_options
        yield options if block_given? && options
      end

      # driver_path can be configured as a proc. The webdrivers gem uses this
      # proc to update web drivers. Running this proc early allows us to only
      # update the webdriver once and avoid race conditions when using
      # parallel tests.
      def preload
        case type
        when :chrome
          ::Selenium::WebDriver::Chrome::Service.driver_path&.call
        when :firefox
          ::Selenium::WebDriver::Firefox::Service.driver_path&.call
        end
      end

      private
        def initialize_options
          @options ||=
            case type
            when :chrome
              ::Selenium::WebDriver::Chrome::Options.new
            when :firefox
              ::Selenium::WebDriver::Firefox::Options.new
            end
        end

        def set_default_options
          case name
          when :headless_chrome
            set_headless_chrome_browser_options
          when :headless_firefox
            set_headless_firefox_browser_options
          end
        end

        def set_headless_chrome_browser_options
          configure do |capabilities|
            capabilities.add_argument("--headless")
            capabilities.add_argument("--disable-gpu") if Gem.win_platform?
          end
        end

        def set_headless_firefox_browser_options
          configure do |capabilities|
            capabilities.add_argument("-headless")
          end
        end
    end
  end
end

Version data entries

29 entries across 27 versions & 3 rubygems

Version Path
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/actionpack-7.0.5.1/lib/action_dispatch/system_testing/browser.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/actionpack-7.0.5.1/lib/action_dispatch/system_testing/browser.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/actionpack-7.0.5.1/lib/action_dispatch/system_testing/browser.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/actionpack-7.0.2.3/lib/action_dispatch/system_testing/browser.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/actionpack-7.0.3.1/lib/action_dispatch/system_testing/browser.rb
actionpack-7.0.7.2 lib/action_dispatch/system_testing/browser.rb
actionpack-7.0.7.1 lib/action_dispatch/system_testing/browser.rb
actionpack-7.0.7 lib/action_dispatch/system_testing/browser.rb
actionpack-7.0.6 lib/action_dispatch/system_testing/browser.rb
actionpack-7.0.5.1 lib/action_dispatch/system_testing/browser.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/actionpack-7.0.2.3/lib/action_dispatch/system_testing/browser.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/actionpack-7.0.3.1/lib/action_dispatch/system_testing/browser.rb
actionpack-7.0.5 lib/action_dispatch/system_testing/browser.rb
actionpack-7.0.4.3 lib/action_dispatch/system_testing/browser.rb
actionpack-7.0.4.2 lib/action_dispatch/system_testing/browser.rb
actionpack-7.0.4.1 lib/action_dispatch/system_testing/browser.rb
actionpack-7.0.4 lib/action_dispatch/system_testing/browser.rb
actionpack-7.0.3.1 lib/action_dispatch/system_testing/browser.rb
actionpack-7.0.3 lib/action_dispatch/system_testing/browser.rb
actionpack-7.0.2.4 lib/action_dispatch/system_testing/browser.rb