summaryrefslogtreecommitdiff
path: root/qa/qa/page/admin/menu.rb
blob: dd289ffe26918888ad189aafcb680765c47bb0aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module QA
  module Page
    module Admin
      class Menu < Page::Base
        def go_to_license
          click_link 'License'
        end

        def go_to_settings
          click_link 'Settings'
        end
      end
    end
  end
end