module Capybara::Node::Matchers

def not_matches_xpath?(xpath, **options, &optional_filter_block)

Returns:
  • (Boolean) -

Parameters:
  • xpath (String, XPath::Expression) -- The XPath expression to match against the current code
def not_matches_xpath?(xpath, **options, &optional_filter_block)
  not_matches_selector?(:xpath, xpath, options, &optional_filter_block)
end