summaryrefslogtreecommitdiff
path: root/qa/qa/page/dashboard/projects.rb
blob: 71255b18362a68a78759e3d88bf49789b0f4c88d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module QA
  module Page
    module Dashboard
      class Projects < Page::Base
        view 'app/views/dashboard/projects/index.html.haml'

        def go_to_project(name)
          find_link(text: name).click
        end
      end
    end
  end
end