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

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

module QA
  module Page
    module Profile
      module Accounts
        class Show < Page::Base
          view 'app/views/profiles/accounts/show.html.haml' do
            element :delete_account_button, required: true
            element :enable_2fa_button
          end

          view 'app/assets/javascripts/profile/account/components/delete_account_modal.vue' do
            element :password_confirmation_field
            element :confirm_delete_account_button
          end

          def click_enable_2fa_button
            click_element(:enable_2fa_button)
          end

          def delete_account(password)
            click_element(:delete_account_button)

            find_element(:password_confirmation_field).set password
            click_element(:confirm_delete_account_button)
          end
        end
      end
    end
  end
end