Skip to content

Instantly share code, notes, and snippets.

@rgarner
Last active December 26, 2015 12:39
Show Gist options
  • Save rgarner/7152901 to your computer and use it in GitHub Desktop.
Save rgarner/7152901 to your computer and use it in GitHub Desktop.
Match SVG text (polyfill for broken Poltergeist)
RSpec::Matchers.define :have_svg_text do |text|
match do |page|
doc = Nokogiri::HTML(page.body)
doc.at_xpath("//text[text()='#{text}']")
end
failure_message_for_should do |actual|
"expected #{actual} to have SVG text #{text}, was not found"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment