summaryrefslogtreecommitdiff
path: root/qa/qa/page/admin/menu.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/admin/menu.rb')
-rw-r--r--qa/qa/page/admin/menu.rb13
1 files changed, 4 insertions, 9 deletions
diff --git a/qa/qa/page/admin/menu.rb b/qa/qa/page/admin/menu.rb
index b01a4e10f93..f4619042e34 100644
--- a/qa/qa/page/admin/menu.rb
+++ b/qa/qa/page/admin/menu.rb
@@ -3,15 +3,10 @@ module QA
module Admin
class Menu < Page::Base
def go_to_license
- within_middle_menu { click_link 'License' }
- end
-
- private
-
- def within_middle_menu
- page.within('.nav-control') do
- yield
- end
+ link = find_link 'License'
+ # Click space to scroll this link into the view
+ link.send_keys(:space)
+ link.click
end
end
end