summaryrefslogtreecommitdiff
path: root/qa/qa/page/file/shared/commit_button.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/file/shared/commit_button.rb')
-rw-r--r--qa/qa/page/file/shared/commit_button.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/qa/qa/page/file/shared/commit_button.rb b/qa/qa/page/file/shared/commit_button.rb
new file mode 100644
index 00000000000..d8e751dd7b6
--- /dev/null
+++ b/qa/qa/page/file/shared/commit_button.rb
@@ -0,0 +1,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