Skip to content

Instantly share code, notes, and snippets.

@certainty
Created December 1, 2012 09:15
Show Gist options
  • Save certainty/4181244 to your computer and use it in GitHub Desktop.
Save certainty/4181244 to your computer and use it in GitHub Desktop.
capybara
require "spec_helper"
feature 'capybara' do
scenario "ignores hidden elements", js: true do
visit root_path
expect(page).to_not have_content("i'm hidden")
end
end
<h3 style="display: none;">i'm hidden</h3>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment