summaryrefslogtreecommitdiff
path: root/features/support/capybara_helpers.rb
blob: 647f8d087c35f88010c67cb121ab574bcbe7b6d4 (plain)
1
2
3
4
5
6
7
8
9
10
module CapybaraHelpers
  def confirm_modal_if_present
    if Capybara.current_driver == Capybara.javascript_driver
      accept_confirm { yield }
      return
    end

    yield
  end
end