summaryrefslogtreecommitdiff
path: root/qa/qa/page/group/show.rb
blob: 6fb058fc7558feb37343971de0380209ed48dfd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module QA
  module Page
    module Group
      class Show < Page::Base
        def go_to_subgroups
          click_link 'Subgroups'
        end

        def go_to_new_project
          click_link 'New Project'
        end
      end
    end
  end
end