Sha256: 8d6b6e6ab9368845040cb003bda1ea23c60ecd2cb575a639978a707d19ac95e3
Contents?: true
Size: 373 Bytes
Versions: 26
Compression:
Stored size: 373 Bytes
Contents
Then /^I should see a menu item for "([^"]*)"$/ do |name| expect(page).to have_css '#tabs li a', text: name end Then /^I should not see a menu item for "([^"]*)"$/ do |name| expect(page).to_not have_css '#tabs li a', text: name end Then /^I should see a nested menu item for "([^"]*)"$/ do |name| expect(page).to have_css '#tabs > li > ul > li > a', text: name end
Version data entries
26 entries across 26 versions & 4 rubygems