summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/settings/runners.rb
blob: ba3dc632c5903467742264b8d8689c1e05242dea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module QA
  module Page
    module Project
      module Settings
        class Runners < Page::Base
          def registration_token
            find('code#registration_token').text
          end

          def coordinator_address
            # TODO, this needs a specific ID or QA class
            #
            all('code').first.text
          end
        end
      end
    end
  end
end