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

secret_variables.rb « settings « project « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fea4acb389a0d3c32fce9522beadadfd1beaa949 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
module QA
  module Page
    module Project
      module Settings
        class SecretVariables < Page::Base
          include Common

          view 'app/views/ci/variables/_variable_row.html.haml' do
            element :variable_key, '.js-ci-variable-input-key'
            element :variable_value, '.js-ci-variable-input-value'
          end

          view 'app/views/ci/variables/_index.html.haml' do
            element :save_variables, '.js-secret-variables-save-button'
          end

          def fill_variable_key(key)
            page.within('.js-ci-variable-list-section .js-row:nth-child(1)') do
              page.find('.js-ci-variable-input-key').set(key)
            end
          end

          def fill_variable_value(value)
            page.within('.js-ci-variable-list-section .js-row:nth-child(1)') do
              page.find('.js-ci-variable-input-value').set(value)
            end
          end

          def save_variables
            click_button('Save variables')
          end

          def variable_key
            page.within('.js-ci-variable-list-section .js-row:nth-child(1)') do
              page.find('.js-ci-variable-input-key').value
            end
          end

          def variable_value
            page.within('.js-ci-variable-list-section .js-row:nth-child(1)') do
              page.find('.js-ci-variable-input-value').value
            end
          end
        end
      end
    end
  end
end