summaryrefslogtreecommitdiff
path: root/qa/qa/page/admin/overview/users/show.rb
blob: f455bd31d14d13ccb3a9e5e30a985e3610f8f5c5 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
# frozen_string_literal: true

module QA
  module Page
    module Admin
      module Overview
        module Users
          class Show < QA::Page::Base
            view 'app/views/admin/users/_head.html.haml' do
              element :impersonate_user_link
            end

            view 'app/views/admin/users/show.html.haml' do
              element :confirm_user_button
              element :user_id_content
            end

            view 'app/views/admin/users/_approve_user.html.haml' do
              element :approve_user_button
            end

            def click_impersonate_user
              click_element(:impersonate_user_link)
            end

            def user_id
              find_element(:user_id_content).text
            end

            def confirm_user
              accept_confirm do
                click_element :confirm_user_button
              end
            end

            def approve_user
              accept_confirm do
                click_element :approve_user_button
              end
            end
          end
        end
      end
    end
  end
end