class Capybara::RSpecMatchers::Matchers::WrappedElementMatcher

def does_not_match?(actual, &filter_block)

def does_not_match?(actual, &filter_block)
  @filter_block ||= filter_block
  element_does_not_match?(wrap(actual))
rescue Capybara::ExpectationNotMet => e
  @failure_message_when_negated = e.message
  false
end