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

user.rb « flow « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0bd475adb79af72f66113bd5414e8f6263dcff6 (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
# frozen_string_literal: true

module QA
  module Flow
    module User
      module_function

      def page
        Capybara.current_session
      end

      def confirm_user(user)
        Flow::Login.while_signed_in_as_admin do
          Page::Main::Menu.perform(&:go_to_admin_area)
          Page::Admin::Menu.perform(&:go_to_users_overview)
          Page::Admin::Overview::Users::Index.perform do |index|
            index.search_user(user.email)
            index.click_user(user.name)
          end

          Page::Admin::Overview::Users::Show.perform(&:confirm_user)
        end
      end
    end
  end
end