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

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

module QA
  module Page
    module Profile
      class Emails < Page::Base
        view 'app/views/profiles/emails/index.html.haml' do
          element :email_address_field
          element :add_email_address_button
          element :email_row_content
          element :delete_email_link
        end

        def add_email_address(email_address)
          find_element(:email_address_field).set email_address
          click_element(:add_email_address_button)
        end

        def delete_email_address(email_address)
          page.accept_alert do
            within_element(:email_row_content, text: email_address) do
              click_element(:delete_email_link)
            end
          end
        end
      end
    end
  end
end