From b7a5b204ba4f8afc4fc627660c035d253dcd4d79 Mon Sep 17 00:00:00 2001 From: sliaquat Date: Thu, 4 Oct 2018 19:46:57 +0500 Subject: Reorganize menu files Add missed files Use correct method Implement review feedback Add missing frozen_string_literal Squash 5 commits --- qa/qa/page/profile/menu.rb | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 qa/qa/page/profile/menu.rb (limited to 'qa/qa/page/profile') diff --git a/qa/qa/page/profile/menu.rb b/qa/qa/page/profile/menu.rb new file mode 100644 index 00000000000..f8a7d64e016 --- /dev/null +++ b/qa/qa/page/profile/menu.rb @@ -0,0 +1,36 @@ +# frozen_string_literal: true + +module QA + module Page + module Profile + class Menu < Page::Base + view 'app/views/layouts/nav/sidebar/_profile.html.haml' do + element :access_token_link, 'link_to profile_personal_access_tokens_path' + element :access_token_title, 'Access Tokens' + element :top_level_items, '.sidebar-top-level-items' + element :ssh_keys, 'SSH Keys' + end + + def click_access_tokens + within_sidebar do + click_link('Access Tokens') + end + end + + def click_ssh_keys + within_sidebar do + click_link('SSH Keys') + end + end + + private + + def within_sidebar + page.within('.sidebar-top-level-items') do + yield + end + end + end + end + end +end -- cgit v1.2.1