summaryrefslogtreecommitdiff
path: root/qa/qa/page/main/oauth.rb
blob: 5f6ddb9a114f756a279918fecb314ea3d668d984 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module QA
  module Page
    module Main
      class OAuth < Page::Base
        view 'app/views/doorkeeper/authorizations/new.html.haml' do
          element :authorization_button, 'submit_tag _("Authorize")' # rubocop:disable QA/ElementWithPattern
        end

        def needs_authorization?
          page.current_url.include?('/oauth')
        end

        def authorize!
          click_button 'Authorize'
        end
      end
    end
  end
end