summaryrefslogtreecommitdiff
path: root/qa/qa/page/group/new.rb
blob: 48b71a7c883f3f1f095864af29c00216981fc04b (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
33
34
35
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'
          element :group_name_field, 'text_field :name'
          element :group_description_field, 'text_area :description'
        end

        view 'app/views/groups/new.html.haml' do
          element :create_group_button, "submit 'Create group'"
          element :visibility_radios, 'visibility_level:'
        end

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

        def set_description(description)
          fill_in 'group_description', with: description
        end

        def set_visibility(visibility)
          choose visibility
        end

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