# File lib/capybara/searchable.rb, line 24 def all(*args) options = if args.last.is_a?(Hash) then args.pop else {} end if args[1].nil? kind, locator = Capybara.default_selector, args.first else kind, locator = args end locator = XPath.from_css(locator) if kind == :css results = all_unfiltered(locator) if options[:text] options[:text] = Regexp.escape(options[:text]) unless options[:text].kind_of?(Regexp) results = results.select { |n| n.text.match(options[:text]) } end if options[:visible] or Capybara.ignore_hidden_elements results = results.select { |n| n.visible? } end results end
# File lib/capybara/searchable.rb, line 3 def find(*args) all(*args).first end
# File lib/capybara/searchable.rb, line 20 def find_by_id(id) find(:css, "##{id}") end
# File lib/capybara/searchable.rb, line 7 def find_field(locator) find(:xpath, XPath.field(locator)) end
Generated with the Darkfish Rdoc Generator 2.