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

        def go_to_push_events
          click_button 'Push events'
        end
      end
    end
  end
end