summaryrefslogtreecommitdiff
path: root/qa/qa/page/group/new.rb
blob: 5f43cfb49c009c285dbcf6111e8477fddfe3b997 (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
30
31
32
# frozen_string_literal: true

module QA
  module Page
    module Group
      class New < Page::Base
        view 'app/views/shared/_group_form.html.haml' do
          element :group_path_field, 'text_field :path' # rubocop:disable QA/ElementWithPattern
          element :group_name_field, 'text_field :name' # rubocop:disable QA/ElementWithPattern
        end

        view 'app/views/groups/_new_group_fields.html.haml' do
          element :create_group_button, "submit _('Create group')" # rubocop:disable QA/ElementWithPattern
          element :visibility_radios, 'visibility_level:' # rubocop:disable QA/ElementWithPattern
        end

        def set_path(path)
          fill_in 'group_path', with: path
          fill_in 'group_name', with: path
        end

        def set_visibility(visibility)
          choose visibility
        end

        def create
          click_button 'Create group'
        end
      end
    end
  end
end