summaryrefslogtreecommitdiff
path: root/qa/qa/page/admin/settings.rb
blob: 1f646103e7f2e05b5abcfab4809a997710317294 (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
module QA
  module Page
    module Admin
      class Settings < Page::Base
        view 'app/views/admin/application_settings/_form.html.haml' do
          element :form_actions, '.form-actions'
          element :submit, "submit 'Save'"
          element :repository_storage, '%legend Repository Storage'
          element :hashed_storage,
            'Create new projects using hashed storage paths'
        end

        def enable_hashed_storage
          scroll_to 'legend', text: 'Repository Storage'
          check 'Create new projects using hashed storage paths'
        end

        def save_settings
          scroll_to '.form-actions' do
            click_button 'Save'
          end
        end
      end
    end
  end
end