summaryrefslogtreecommitdiff
path: root/qa/qa/page/file/shared/commit_button.rb
blob: d8e751dd7b6fc4baa76fbbb0ab02047dd4d6813f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module QA
  module Page
    module File
      module Shared
        module CommitButton
          def self.included(base)
            base.view 'app/views/projects/_commit_button.html.haml' do
              element :commit_button
            end
          end

          def commit_changes
            click_element(:commit_button)
          end
        end
      end
    end
  end
end