summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/activity.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/project/activity.rb')
-rw-r--r--qa/qa/page/project/activity.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/qa/qa/page/project/activity.rb b/qa/qa/page/project/activity.rb
new file mode 100644
index 00000000000..0196922c889
--- /dev/null
+++ b/qa/qa/page/project/activity.rb
@@ -0,0 +1,15 @@
+module QA
+ module Page
+ module Project
+ class Activity < Page::Base
+ view 'app/views/shared/_event_filter.html.haml' do
+ element :push_events, "event_filter_link EventFilter.push, _('Push events')"
+ end
+
+ def go_to_push_events
+ click_on 'Push events'
+ end
+ end
+ end
+ end
+end