summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/milestone/index.rb
blob: a1519c9ef1cddbea903e103262283c8f2dc91dcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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