summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/settings/advanced.rb
blob: 578f097e2dc8e9ba2b3a2c5f4ebc315fc562b29e (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
      module Settings
        class Advanced < Page::Base
          view 'app/views/projects/edit.html.haml' do
            element :project_path_field, 'text_field :path' # rubocop:disable QA/ElementWithPattern
            element :project_name_field, 'text_field :name' # rubocop:disable QA/ElementWithPattern
            element :rename_project_button, "submit 'Rename project'" # rubocop:disable QA/ElementWithPattern
          end

          def rename_to(path)
            fill_project_name(path)
            fill_project_path(path)
            rename_project!
          end

          def fill_project_path(path)
            fill_in :project_path, with: path
          end

          def fill_project_name(name)
            fill_in :project_name, with: name
          end

          def rename_project!
            click_on 'Rename project'
          end
        end
      end
    end
  end
end