debian-mirror-gitlab/spec/support/helpers/features/access_token_helpers.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
463 B
Ruby
Raw Normal View History

2023-01-13 00:05:48 +05:30
# 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