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

new.rb « issue « project « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c90a09dce2e570cfec41c59a0e51aeab7e89125a (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 Issue
        class New < Page::Issuable::New
          view 'app/views/shared/issuable/_form.html.haml' do
            element :issuable_create_button
          end

          def create_new_issue
            click_element :issuable_create_button, Page::Project::Issue::Show
          end
        end
      end
    end
  end
end