summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/pipeline/new.rb
blob: 644a21b46e91c99541a7026e45047b3169480227 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module QA
  module Page
    module Project
      module Pipeline
        class New < QA::Page::Base
          view 'app/assets/javascripts/pipeline_new/components/pipeline_new_form.vue' do
            element :run_pipeline_button, required: true
          end

          def click_run_pipeline_button
            click_element :run_pipeline_button
          end
        end
      end
    end
  end
end