summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/branches/show.rb
blob: 368e7ac74485f552236d9df7a49fb443d9d16ca2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# frozen_string_literal: true

module QA
  module Page
    module Project
      module Branches
        class Show < Page::Base
          view 'app/views/projects/branches/_branch.html.haml' do
            element :remove_btn
          end
          view 'app/views/projects/branches/_panel.html.haml' do
            element :all_branches
          end
          view 'app/views/projects/branches/index.html.haml' do
            element :delete_merged_branches
          end

          def delete_branch(branch_name)
            within_element(:all_branches) do
              within(".js-branch-#{branch_name}") do
                accept_alert do
                  click_element(:remove_btn)
                end
              end
            end

            finished_loading?
          end

          def has_no_branch?(branch_name)
            within_element(:all_branches) do
              has_no_css?(".js-branch-#{branch_name}", wait: Support::Waiter::DEFAULT_MAX_WAIT_TIME)
            end
          end

          def has_branch_with_badge?(branch_name, badge)
            within_element(:all_branches) do
              within(".js-branch-#{branch_name} .badge") do
                has_text?(badge)
              end
            end
          end

          def delete_merged_branches
            accept_alert do
              click_element(:delete_merged_branches)
            end
          end
        end
      end
    end
  end
end