Welcome to mirror list, hosted at ThFree Co, Russian Federation.

show.rb « group « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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