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

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

module QA
  module Page
    module Project
      module Operations
        module Incidents
          class Index < Page::Base
            view 'app/assets/javascripts/incidents/components/incidents_list.vue' do
              element :create_incident_button
            end

            def create_incident
              click_element :create_incident_button
            end
          end
        end
      end
    end
  end
end