Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/organization/new.rb')
-rw-r--r--qa/qa/page/organization/new.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/qa/qa/page/organization/new.rb b/qa/qa/page/organization/new.rb
new file mode 100644
index 00000000000..c72a3e6d1b4
--- /dev/null
+++ b/qa/qa/page/organization/new.rb
@@ -0,0 +1,25 @@
+# frozen_string_literal: true
+
+module QA
+ module Page
+ module Organization
+ class New < QA::Page::Base
+ include QA::Page::Component::Dropdown
+ view 'app/assets/javascripts/organizations/shared/components/new_edit_form.vue' do
+ element 'organization-name'
+ element 'submit-button'
+ end
+
+ # Sets the organization name
+ # @param name [string] name of organization
+ def organization_name=(name)
+ fill_element('organization-name', name)
+ end
+
+ def create_organization
+ click_element('submit-button')
+ end
+ end
+ end
+ end
+end