debian-mirror-gitlab/spec/support/helpers/features/access_token_helpers.rb
2023-01-12 18:35:48 +00:00

20 lines
463 B
Ruby

# frozen_string_literal: true
module Spec
module Support
module Helpers
module AccessTokenHelpers
def active_access_tokens
find("[data-testid='active-tokens']")
end
def created_access_token
within('[data-testid=access-token-section]') do
find('[data-testid=toggle-visibility-button]').click
find_field('new-access-token').value
end
end
end
end
end
end