diff options
Diffstat (limited to 'qa/qa/resource/deploy_token.rb')
-rw-r--r-- | qa/qa/resource/deploy_token.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/qa/qa/resource/deploy_token.rb b/qa/qa/resource/deploy_token.rb index b4baaa47349..0ba8dbbf287 100644 --- a/qa/qa/resource/deploy_token.rb +++ b/qa/qa/resource/deploy_token.rb @@ -6,16 +6,16 @@ module QA attr_accessor :name, :expires_at attribute :username do - Page::Project::Settings::CICD.perform do |cicd_page| - cicd_page.expand_deploy_tokens do |token| + Page::Project::Settings::Repository.perform do |repository_page| + repository_page.expand_deploy_tokens do |token| token.token_username end end end attribute :password do - Page::Project::Settings::CICD.perform do |cicd_page| - cicd_page.expand_deploy_tokens do |token| + Page::Project::Settings::Repository.perform do |repository_page| + repository_page.expand_deploy_tokens do |token| token.token_password end end @@ -31,10 +31,10 @@ module QA def fabricate! project.visit! - Page::Project::Menu.perform(&:go_to_ci_cd_settings) + Page::Project::Menu.perform(&:go_to_repository_settings) - Page::Project::Settings::CICD.perform do |cicd| - cicd.expand_deploy_tokens do |page| + Page::Project::Settings::Repository.perform do |setting| + setting.expand_deploy_tokens do |page| page.fill_token_name(name) page.fill_token_expires_at(expires_at) page.fill_scopes(read_repository: true, read_registry: false) |