summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/new.rb
blob: 9b1438f76d57f7ddafb0310c2cbb0224026963af (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
module QA
  module Page
    module Project
      class New < Page::Base
        view 'app/views/projects/_new_project_fields.html.haml' do
          element :project_namespace_select
          element :project_namespace_field, 'select :namespace_id'
          element :project_path, 'text_field :path'
          element :project_description, 'text_area :description'
          element :project_create_button, "submit 'Create project'"
        end

        def choose_test_namespace
          click_element :project_namespace_select

          first('li', text: Runtime::Namespace.path).click
        end

        def choose_name(name)
          fill_in 'project_path', with: name
        end

        def add_description(description)
          fill_in 'project_description', with: description
        end

        def create_new_project
          click_on 'Create project'
        end
      end
    end
  end
end