summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/milestone/index.rb
blob: 6895c44f72ff66a9613205b7a36bf6cb5ba9ce36 (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 Milestone
        class Index < Page::Base
          view 'app/views/projects/milestones/index.html.haml' do
            element :new_project_milestone
          end

          def click_new_milestone
            click_element :new_project_milestone
          end
        end
      end
    end
  end
end