summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/issue/index.rb
blob: ace2537fc0ea9e58154ffe3b124dea0b7613789d (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# frozen_string_literal: true

module QA
  module Page
    module Project
      module Issue
        class Index < Page::Base
          view 'app/helpers/projects_helper.rb' do
            element :assignee_link
          end

          view 'app/views/projects/issues/export_csv/_button.html.haml' do
            element :export_as_csv_button
          end

          view 'app/views/projects/issues/export_csv/_modal.html.haml' do
            element :export_issues_button
            element :export_issues_modal
          end

          view 'app/views/projects/issues/_issue.html.haml' do
            element :issue
            element :issue_link, 'link_to issue.title' # rubocop:disable QA/ElementWithPattern
          end

          view 'app/views/shared/issuable/_assignees.html.haml' do
            element :avatar_counter
          end

          view 'app/views/shared/issuable/_nav.html.haml' do
            element :closed_issues_link
          end

          def avatar_counter
            find_element(:avatar_counter)
          end

          def click_issue_link(title)
            click_link(title)
          end

          def click_closed_issues_link
            click_element :closed_issues_link
          end

          def click_export_as_csv_button
            click_element(:export_as_csv_button)
          end

          def click_export_issues_button
            click_element(:export_issues_button)
          end

          def export_issues_modal
            find_element(:export_issues_modal)
          end

          def has_assignee_link_count?(count)
            all_elements(:assignee_link, count: count)
          end

          def has_issue?(issue)
            has_element? :issue, issue_title: issue.title
          end
        end
      end
    end
  end
end

QA::Page::Project::Issue::Index.prepend_if_ee('QA::EE::Page::Project::Issue::Index')