debian-mirror-gitlab/features/steps/shared/active_tab.rb

33 lines
967 B
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
module SharedActiveTab
include Spinach::DSL
2017-09-10 17:25:29 +05:30
include WaitForRequests
2017-08-17 22:00:37 +05:30
after do
2017-09-10 17:25:29 +05:30
wait_for_requests if javascript_test?
2017-08-17 22:00:37 +05:30
end
2014-09-02 18:07:02 +05:30
def ensure_active_main_tab(content)
2018-03-17 18:26:18 +05:30
expect(find('.sidebar-top-level-items > li.active')).to have_content(content)
2014-09-02 18:07:02 +05:30
end
def ensure_active_sub_tab(content)
2018-03-17 18:26:18 +05:30
expect(find('.sidebar-sub-level-items > li.active:not(.fly-out-top-item)')).to have_content(content)
2014-09-02 18:07:02 +05:30
end
def ensure_active_sub_nav(content)
expect(find('.layout-nav .controls li.active')).to have_content(content)
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
step 'no other main tabs should be active' do
2018-03-17 18:26:18 +05:30
expect(page).to have_selector('.sidebar-top-level-items > li.active', count: 1)
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
step 'no other sub tabs should be active' do
2018-03-17 18:26:18 +05:30
expect(page).to have_selector('.sidebar-sub-level-items > li.active:not(.fly-out-top-item)', count: 1)
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
step 'no other sub navs should be active' do
expect(page).to have_selector('.layout-nav .controls li.active', count: 1)
2014-09-02 18:07:02 +05:30
end
end