# File lib/capybara/node/finders.rb, line 109
      def all(*args)
        selector = Capybara::Selector.normalize(*args)
        options = extract_normalized_options(args)

        selector.xpaths.
          map    { |path| find_in_base(selector, path) }.flatten.
          select { |node| node.without_wait { matches_options(node, options) } }
      end