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

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

module QA
  module Page
    module Modal
      class DeleteIssue < Base
        view 'app/assets/javascripts/issues/show/components/delete_issue_modal.vue' do
          element 'confirm-delete-issue-button', required: true
        end

        def confirm_delete_issue
          click_element('confirm-delete-issue-button')
        end
      end
    end
  end
end