require 'capybara' require 'active_support' require 'active_support/core_ext' # Remove this monkey patch after fixing the bugs in selenium-webdriver / capybara # :nocov: class Capybara::Selenium::Driver # rubocop:disable Style/ClassAndModuleChildren # # https://github.com/teamcapybara/capybara/issues/1845 def title return browser.title unless within_frame? find_xpath('/html/head/title').map { |n| n[:text] }.first.to_s end # Known issue, works differently for real browsers # https://github.com/seleniumhq/selenium/issues/1727 def current_url return browser.current_url unless within_frame? execute_script('return document.location.href') end private def within_frame? !(@frame_handles.blank? || @frame_handles[browser.window_handle].blank?) end end # :nocov: module Howitzer module Web # This module proxies required original capybara methods to recipient module CapybaraMethodsProxy PROXIED_CAPYBARA_METHODS = Capybara::Session::SESSION_METHODS + # :nodoc: Capybara::Session::MODAL_METHODS + %i[driver text] # Capybara form dsl methods are not compatible with page object pattern and Howitzer gem. # Instead of including Capybara::DSL module, we proxy most interesting Capybara methods and # prevent using extra methods which can potentially broke main principles and framework concept PROXIED_CAPYBARA_METHODS.each do |method| define_method(method) do |*args, **options, &block| if options.present? Capybara.current_session.send(method, *args, **options, &block) else Capybara.current_session.send(method, *args, &block) end end end # Accepts or declines JS alert box by given flag # @param flag [Boolean] Determines accept or decline alert box def click_alert_box(flag) if %w[selenium sauce].include? Howitzer.driver alert = driver.browser.switch_to.alert flag ? alert.accept : alert.dismiss else evaluate_script("window.confirm = function() { return #{flag}; }") end end private def capybara_scopes @capybara_scopes ||= Hash.new { |hash, key| hash[key] = [Capybara.current_session] } @capybara_scopes[Howitzer.session_name] end end end end