gitlab-org--gitlab-foss/features/steps/shared/active_tab.rb

32 lines
916 B
Ruby
Raw Normal View History

module SharedActiveTab
include Spinach::DSL
def ensure_active_main_tab(content)
2013-01-31 10:08:56 +00:00
if content == "Home"
2013-04-02 08:23:06 +00:00
page.find('.main-nav li.active').should have_css('i.icon-home')
2013-01-31 10:08:56 +00:00
else
2013-04-02 08:23:06 +00:00
page.find('.main-nav li.active').should have_content(content)
2013-01-31 10:08:56 +00:00
end
end
def ensure_active_sub_tab(content)
page.find('div.content ul.nav-tabs li.active').should have_content(content)
end
def ensure_active_sub_nav(content)
page.find('div.content ul.nav-stacked-menu li.active').should have_content(content)
end
And 'no other main tabs should be active' do
2013-04-02 08:23:06 +00:00
page.should have_selector('.main-nav li.active', count: 1)
end
And 'no other sub tabs should be active' do
page.should have_selector('div.content ul.nav-tabs li.active', count: 1)
end
And 'no other sub navs should be active' do
page.should have_selector('div.content ul.nav-stacked-menu li.active', count: 1)
end
end