summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/settings/deploy_tokens.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-05-19 15:44:42 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-05-19 15:44:42 +0000
commit4555e1b21c365ed8303ffb7a3325d773c9b8bf31 (patch)
tree5423a1c7516cffe36384133ade12572cf709398d /qa/qa/page/project/settings/deploy_tokens.rb
parente570267f2f6b326480d284e0164a6464ba4081bc (diff)
downloadgitlab-ce-4555e1b21c365ed8303ffb7a3325d773c9b8bf31.tar.gz
Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42
Diffstat (limited to 'qa/qa/page/project/settings/deploy_tokens.rb')
-rw-r--r--qa/qa/page/project/settings/deploy_tokens.rb34
1 files changed, 17 insertions, 17 deletions
diff --git a/qa/qa/page/project/settings/deploy_tokens.rb b/qa/qa/page/project/settings/deploy_tokens.rb
index 3c3ed4f8716..b26cae86d8b 100644
--- a/qa/qa/page/project/settings/deploy_tokens.rb
+++ b/qa/qa/page/project/settings/deploy_tokens.rb
@@ -6,54 +6,54 @@ module QA
module Settings
class DeployTokens < Page::Base
view 'app/views/shared/deploy_tokens/_form.html.haml' do
- element :deploy_token_name
- element :deploy_token_expires_at
- element :deploy_token_read_repository
- element :deploy_token_read_registry
- element :create_deploy_token
+ element :deploy_token_name_field
+ element :deploy_token_expires_at_field
+ element :deploy_token_read_repository_checkbox
+ element :deploy_token_read_registry_checkbox
+ element :create_deploy_token_button
end
view 'app/views/shared/deploy_tokens/_new_deploy_token.html.haml' do
- element :created_deploy_token_section
- element :deploy_token_user
- element :deploy_token
+ element :created_deploy_token_container
+ element :deploy_token_user_field
+ element :deploy_token_field
end
def fill_token_name(name)
- fill_element :deploy_token_name, name
+ fill_element(:deploy_token_name_field, name)
end
def fill_token_expires_at(expires_at)
- fill_element :deploy_token_expires_at, expires_at.to_s + "\n"
+ fill_element(:deploy_token_expires_at_field, expires_at.to_s + "\n")
end
def fill_scopes(read_repository:, read_registry:)
- check_element :deploy_token_read_repository if read_repository
- check_element :deploy_token_read_registry if read_registry
+ check_element(:deploy_token_read_repository_checkbox) if read_repository
+ check_element(:deploy_token_read_registry_checkbox) if read_registry
end
def add_token
- click_element :create_deploy_token
+ click_element(:create_deploy_token_button)
end
def token_username
within_new_project_deploy_token do
- find_element(:deploy_token_user).value
+ find_element(:deploy_token_user_field).value
end
end
def token_password
within_new_project_deploy_token do
- find_element(:deploy_token).value
+ find_element(:deploy_token_field).value
end
end
private
def within_new_project_deploy_token
- has_element?(:created_deploy_token_section, wait: QA::Support::Repeater::DEFAULT_MAX_WAIT_TIME)
+ has_element?(:created_deploy_token_container, wait: QA::Support::Repeater::DEFAULT_MAX_WAIT_TIME)
- within_element(:created_deploy_token_section) do
+ within_element(:created_deploy_token_container) do
yield
end
end