Welcome to mirror list, hosted at ThFree Co, Russian Federation.

edit.rb « groups « overview « admin « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e4650a1232a3ab05a8106ff4ba5fd375dde9b1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

module QA
  module Page
    module Admin
      module Overview
        module Groups
          class Edit < QA::Page::Base
            view 'app/views/admin/groups/_form.html.haml' do
              element :save_changes_button, required: true
            end

            def click_save_changes_button
              click_element :save_changes_button, Groups::Show
            end
          end
        end
      end
    end
  end
end

QA::Page::Admin::Overview::Groups::Edit.prepend_mod_with('Page::Admin::Overview::Groups::Edit', namespace: QA)