class Capybara::Node::Base

def find_xpath(xpath, **options)

Other tags:
    Api: - private
def find_xpath(xpath, **options)
  if base.method(:find_xpath).arity == 1
    base.find_xpath(xpath)
  else
    base.find_xpath(xpath, **options)
  end
end