class AutomationHelpers::Patches::SeleniumManager

Private Instance Methods

deprecate_from() click to toggle source
# File lib/automation_helpers/patches/selenium_manager.rb, line 19
def deprecate_from
  '4.0.0.beta3'
end
description() click to toggle source
# File lib/automation_helpers/patches/selenium_manager.rb, line 8
      def description
        <<~DESCRIPTION
          This patch fixes an issue with Selenium4 not bubbling up the httpOnly property of a cookie
          See: https://github.com/SeleniumHQ/selenium/pull/8958 for more details/discussion including this fix
        DESCRIPTION
      end
gem_version() click to toggle source
# File lib/automation_helpers/patches/selenium_manager.rb, line 27
def gem_version
  ::Selenium::WebDriver::VERSION
end
perform() click to toggle source
# File lib/automation_helpers/patches/selenium_manager.rb, line 15
def perform
  ::Selenium::WebDriver::Manager.prepend CookieConverter
end
prevent_usage_from() click to toggle source
# File lib/automation_helpers/patches/selenium_manager.rb, line 23
def prevent_usage_from
  '4.0.0.beta5'
end