summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/settings/runners.rb
blob: b41668c94cdb48d933f8d25b0babd14314f661b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
module QA
  module Page
    module Project
      module Settings
        class Runners < Page::Base
          view 'app/views/ci/runner/_how_to_setup_runner.html.haml' do
            element :registration_token, '%code#registration_token'
            element :coordinator_address, '%code#coordinator_address'
          end

          ##
          # TODO, phase-out CSS classes added in Ruby helpers.
          #
          view 'app/helpers/runners_helper.rb' do
            # rubocop:disable Lint/InterpolationCheck
            element :runner_status, 'runner-status-#{status}'
            # rubocop:enable Lint/InterpolationCheck
          end

          def registration_token
            find('code#registration_token').text
          end

          def coordinator_address
            find('code#coordinator_address').text
          end

          def has_online_runner?
            page.has_css?('.runner-status-online')
          end
        end
      end
    end
  end
end