summaryrefslogtreecommitdiff
path: root/qa/qa/page/dashboard/projects.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/dashboard/projects.rb')
-rw-r--r--qa/qa/page/dashboard/projects.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/qa/qa/page/dashboard/projects.rb b/qa/qa/page/dashboard/projects.rb
new file mode 100644
index 00000000000..7ed27da6d89
--- /dev/null
+++ b/qa/qa/page/dashboard/projects.rb
@@ -0,0 +1,11 @@
+module QA
+ module Page
+ module Dashboard
+ class Projects < Page::Base
+ def go_to_project(name)
+ find_link(text: name).click
+ end
+ end
+ end
+ end
+end