summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/activity.rb
blob: 47bfca087fb276abfe4c7d775abb4352f6d9d729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module QA
  module Page
    module Project
      class Activity < Page::Base
        ##
        # TODO, define all selectors required by this page object
        #
        # See gitlab-org/gitlab-qa#155
        #
        view 'app/views/shared/_event_filter.html.haml'

        def go_to_push_events
          click_on 'Push events'
        end
      end
    end
  end
end