summaryrefslogtreecommitdiff
path: root/qa/qa/mobile/page/project/issue/show.rb
blob: df96a31880609c62d09c3fd74df483fdf6b3eaed (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
# frozen_string_literal: true

module QA
  module Mobile
    module Page
      module Project
        module Issue
          module Show
            extend QA::Page::PageConcern

            def self.prepended(base)
              super

              base.class_eval do
                view 'app/assets/javascripts/issues/show/components/header_actions.vue' do
                  element :issue_actions_dropdown
                  element :mobile_close_issue_button
                  element :mobile_reopen_issue_button
                end
              end
            end

            def click_close_issue_button
              find('[data-qa-selector="issue_actions_dropdown"] > button').click
              find_element(:mobile_close_issue_button, visible: false).click
            end

            def has_reopen_issue_button?
              find('[data-qa-selector="issue_actions_dropdown"] > button').click
              has_element?(:mobile_reopen_issue_button)
            end
          end
        end
      end
    end
  end
end