Welcome to mirror list, hosted at ThFree Co, Russian Federation.

login.rb « page « github « vendor « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d8f9aa7c1221f02b9354889be4efbba1ac070d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

require 'capybara/dsl'

module QA
  module Vendor
    module Github
      module Page
        class Login < Page::Base
          def login
            fill_in 'login', with: QA::Runtime::Env.github_username
            fill_in 'password', with: QA::Runtime::Env.github_password
            click_on 'Sign in'

            unless has_no_text?("Authorize GitLab-OAuth")
              click_on 'Authorize gitlab-qa' if has_button?('Authorize gitlab-qa')
            end
          end
        end
      end
    end
  end
end