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.rb19
1 files changed, 19 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..c343266f01d
--- /dev/null
+++ b/qa/qa/page/project/activity.rb
@@ -0,0 +1,19 @@
+module QA
+ module Page
+ module Project
+ class Activity < Page::Base
+ view 'app/views/shared/_event_filter.html.haml' do
+ element :push_events_button, 'Push events'
+ end
+
+ def go_to_push_events
+ click_link :push_events_button
+ end
+
+ def self.path
+ '/activity'
+ end
+ end
+ end
+ end
+end