Sha256: eca6716280da68ad9be7307e5222bfd009dad6fba6ace0d519b7425bcb7b4f96
Contents?: true
Size: 705 Bytes
Versions: 20
Compression:
Stored size: 705 Bytes
Contents
Then /^I should see a member link to "([^"]*)"$/ do |name| expect(page).to have_css('a.member_link', text: name) end Then /^I should not see a member link to "([^"]*)"$/ do |name| %{Then I should not see "#{name}" within "a.member_link"} end Then /^I should see the actions column with the class "([^"]*)" and the title "([^"]*)"$/ do |klass, title| expect(page).to have_css "th#{'.'+klass}", text: title end Then /^I should see a dropdown menu item to "([^"]*)"$/ do |name| expect(page).to have_css('ul.dropdown_menu_list li a', text: name) end Then /^I should not see a dropdown menu item to "([^"]*)"$/ do |name| %{Then I should not see "#{name}" within "ul.dropdown_menu_list li a"} end
Version data entries
20 entries across 20 versions & 4 rubygems