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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/profile/emails.rb')
-rw-r--r--qa/qa/page/profile/emails.rb22
1 files changed, 11 insertions, 11 deletions
diff --git a/qa/qa/page/profile/emails.rb b/qa/qa/page/profile/emails.rb
index 1e6b7518e55..f9340445276 100644
--- a/qa/qa/page/profile/emails.rb
+++ b/qa/qa/page/profile/emails.rb
@@ -7,27 +7,27 @@ module QA
include QA::Page::Component::ConfirmModal
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
- element :toggle_email_address_field
+ element 'email-address-field'
+ element 'add-email-address-button'
+ element 'email-row-content'
+ element 'delete-email-link'
+ element 'toggle-email-address-field'
end
def expand_email_input
- click_element(:toggle_email_address_field) if has_no_element?(:email_address_field)
- has_element?(:email_address_field)
+ click_element('toggle-email-address-field') if has_no_element?('email-address-field')
+ has_element?('email-address-field')
end
def add_email_address(email_address)
expand_email_input
- find_element(:email_address_field).set email_address
- click_element(:add_email_address_button)
+ find_element('email-address-field').set email_address
+ click_element('add-email-address-button')
end
def delete_email_address(email_address)
- within_element(:email_row_content, text: email_address) do
- click_element(:delete_email_link)
+ within_element('email-row-content', text: email_address) do
+ click_element('delete-email-link')
end
click_confirmation_ok_button
end