summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/settings/default_branch.rb
blob: cc28b37b88fa6d8c8c86009b5a55b8078f610165 (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
# frozen_string_literal: true

module QA
  module Page
    module Project
      module Settings
        class DefaultBranch < Page::Base
          include Page::Component::Select2

          view 'app/views/projects/default_branch/_show.html.haml' do
            element :save_changes_button
            element :default_branch_dropdown
          end

          def set_default_branch(branch)
            find('.select2-chosen').click
            search_and_select(branch)
          end

          def click_save_changes_button
            find('.btn-confirm').click
          end
        end
      end
    end
  end
end

QA::Page::Project::Settings::DefaultBranch.prepend_mod_with('Page::Project::Settings::DefaultBranch', namespace: QA)