summaryrefslogtreecommitdiff
path: root/qa/qa/page/admin/menu.rb
blob: f4619042e34e57becc3b22f66be4b0390f6bdf3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module QA
  module Page
    module Admin
      class Menu < Page::Base
        def go_to_license
          link = find_link 'License'
          # Click space to scroll this link into the view
          link.send_keys(:space)
          link.click
        end
      end
    end
  end
end