summaryrefslogtreecommitdiff
path: root/qa/qa/page/file/shared/commit_button.rb
blob: c1c5907f27d1d00db95d5c1a32a66b1a19e4790d (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 File
      module Shared
        module CommitButton
          extend QA::Page::PageConcern

          def self.included(base)
            super

            base.view 'app/views/projects/_commit_button.html.haml' do
              element :commit_button
            end
          end

          def commit_changes
            click_element(:commit_button)

            wait_until(reload: false, max_duration: 60) do
              finished_loading?
            end
          end
        end
      end
    end
  end
end