summaryrefslogtreecommitdiff
path: root/qa/qa/page/issuable/sidebar.rb
blob: af5eee35a2d50dbbd960ca4341e6ed263a6de390 (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
# frozen_string_literal: true

module QA
  module Page
    module Issuable
      class Sidebar < Page::Base
        view 'app/views/shared/issuable/_sidebar.html.haml' do
          element :labels_block
          element :milestone_block
          element :milestone_link
        end

        def has_label?(label)
          within_element(:labels_block) do
            has_element?(:label, label_name: label)
          end
        end

        def has_milestone?(milestone_title)
          within_element(:milestone_block) do
            has_element?(:milestone_link, title: milestone_title)
          end
        end
      end
    end
  end
end