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
path: root/qa
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-09-03 03:10:28 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-09-03 03:10:28 +0300
commitc8489a149e99123aa1d7425677eb720c31ae7dd8 (patch)
tree13bf67bbeb1c962a442a280a7889dd901efbd41c /qa
parenta3314555072d1d432c6524a552fe36728ea66cdb (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'qa')
-rw-r--r--qa/qa/page/profile/accounts/show.rb7
1 files changed, 2 insertions, 5 deletions
diff --git a/qa/qa/page/profile/accounts/show.rb b/qa/qa/page/profile/accounts/show.rb
index eec4efe1734..2cd2d4597dc 100644
--- a/qa/qa/page/profile/accounts/show.rb
+++ b/qa/qa/page/profile/accounts/show.rb
@@ -11,17 +11,14 @@ module QA
view 'app/assets/javascripts/profile/account/components/delete_account_modal.vue' do
element :password_confirmation_field
- end
-
- view 'app/assets/javascripts/vue_shared/components/deprecated_modal.vue' do
- element :save_changes_button
+ element :confirm_deletion_button
end
def delete_account(password)
click_element(:delete_account_button)
find_element(:password_confirmation_field).set password
- click_element(:save_changes_button)
+ click_element(:confirm_deletion_button)
end
end
end