summaryrefslogtreecommitdiff
path: root/qa/qa/page/main/projects.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/main/projects.rb')
-rw-r--r--qa/qa/page/main/projects.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/qa/qa/page/main/projects.rb b/qa/qa/page/main/projects.rb
new file mode 100644
index 00000000000..28d3a424022
--- /dev/null
+++ b/qa/qa/page/main/projects.rb
@@ -0,0 +1,16 @@
+module QA
+ module Page
+ module Main
+ class Projects < Page::Base
+ def go_to_new_project
+ ##
+ # There are 'New Project' and 'New project' buttons on the projects
+ # page, so we can't use `click_on`.
+ #
+ button = find('a', text: /^new project$/i)
+ button.click
+ end
+ end
+ end
+ end
+end