summaryrefslogtreecommitdiff
path: root/qa/qa/page/group
diff options
context:
space:
mode:
authorSanad Liaquat <sliaquat@gitlab.com>2019-08-27 10:48:04 +0500
committerSanad Liaquat <sliaquat@gitlab.com>2019-08-27 10:48:04 +0500
commit7a162e1a8f1f1aeb45fee149c201115f7a7231c9 (patch)
tree98f9630312312cdf9a08828439f0d0034816b211 /qa/qa/page/group
parent4d4e88df01554336daf245a68653b80ca00989a5 (diff)
downloadgitlab-ce-7a162e1a8f1f1aeb45fee149c201115f7a7231c9.tar.gz
Add qa selector elements and files from the EE branch
Diffstat (limited to 'qa/qa/page/group')
-rw-r--r--qa/qa/page/group/settings/general.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/qa/qa/page/group/settings/general.rb b/qa/qa/page/group/settings/general.rb
new file mode 100644
index 00000000000..07b421f154a
--- /dev/null
+++ b/qa/qa/page/group/settings/general.rb
@@ -0,0 +1,18 @@
+# frozen_string_literal: true
+
+module QA
+ module Page
+ module Group
+ module Settings
+ class General < QA::Page::Base
+ view 'app/views/groups/edit.html.haml' do
+ element :permission_lfs_2fa_section
+ end
+ view 'app/views/groups/settings/_permissions.html.haml' do
+ element :save_permissions_changes_button
+ end
+ end
+ end
+ end
+ end
+end