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:
authorSanad Liaquat <sliaquat@gitlab.com>2019-01-16 12:18:15 +0300
committerSanad Liaquat <sliaquat@gitlab.com>2019-01-16 12:18:15 +0300
commitffb17a3b5492223a889825b5cecd14a3ee797e50 (patch)
tree81159d682573ee7da33675b8f28bc85a150d2122 /qa
parent88189d31669da6829ce425ae477908febf281ab4 (diff)
Use qa element with wait
Diffstat (limited to 'qa')
-rw-r--r--qa/qa/page/profile/personal_access_tokens.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/qa/qa/page/profile/personal_access_tokens.rb b/qa/qa/page/profile/personal_access_tokens.rb
index 5d27d801876..f4635ac94ab 100644
--- a/qa/qa/page/profile/personal_access_tokens.rb
+++ b/qa/qa/page/profile/personal_access_tokens.rb
@@ -9,9 +9,8 @@ module QA
end
view 'app/views/shared/_personal_access_tokens_created_container.html.haml' do
- element :create_token_field, "text_field_tag 'created-personal-access-token'" # rubocop:disable QA/ElementWithPattern
+ element :created_personal_access_token
end
-
view 'app/views/shared/_personal_access_tokens_table.html.haml' do
element :revoke_button
end
@@ -29,7 +28,7 @@ module QA
end
def created_access_token
- page.find('#created-personal-access-token').value
+ find_element(:created_personal_access_token, wait: 30).value
end
def has_token_row_for_name?(token_name)