2010-07-09 20:20:32 -04:00
|
|
|
module Capybara
|
2010-11-21 08:37:36 -05:00
|
|
|
module Node
|
2010-07-09 20:20:32 -04:00
|
|
|
module Finders
|
2010-07-17 13:05:00 -04:00
|
|
|
|
|
|
|
##
|
|
|
|
#
|
2010-08-27 14:52:06 -04:00
|
|
|
# Find an {Capybara::Element} based on the given arguments. +find+ will raise an error if the element
|
2010-07-19 14:18:16 -04:00
|
|
|
# is not found. The error message can be customized through the +:message+ option.
|
2010-07-17 13:05:00 -04:00
|
|
|
#
|
2010-07-19 14:18:16 -04:00
|
|
|
# If the driver is capable of executing JavaScript, +find+ will wait for a set amount of time
|
2010-07-17 13:05:00 -04:00
|
|
|
# and continuously retry finding the element until either the element is found or the time
|
2010-08-27 14:52:06 -04:00
|
|
|
# expires. The length of time +find+ will wait is controlled through {Capybara.default_wait_time}
|
2010-07-17 13:05:00 -04:00
|
|
|
# and defaults to 2 seconds.
|
|
|
|
#
|
2010-07-19 14:18:16 -04:00
|
|
|
# +find+ takes the same options as +all+.
|
2010-07-17 13:05:00 -04:00
|
|
|
#
|
2010-07-19 14:18:16 -04:00
|
|
|
# page.find('#foo').find('.bar')
|
2011-06-27 19:01:46 -04:00
|
|
|
# page.find(:xpath, '//div[contains(., "bar")]')
|
2010-07-19 14:18:16 -04:00
|
|
|
# page.find('li', :text => 'Quox').click_link('Delete')
|
2010-07-17 13:05:00 -04:00
|
|
|
#
|
|
|
|
# @param (see Capybara::Node::Finders#all)
|
2010-08-27 14:52:06 -04:00
|
|
|
# @option options [String] :message An error message in case the element can't be found
|
2010-07-17 13:05:00 -04:00
|
|
|
# @return [Capybara::Element] The found element
|
|
|
|
# @raise [Capybara::ElementNotFound] If the element can't be found before time expires
|
|
|
|
#
|
2010-07-19 14:18:16 -04:00
|
|
|
def find(*args)
|
2011-08-12 07:52:12 -04:00
|
|
|
wait_until { first(*args) or raise_find_error(*args) }
|
2010-07-09 20:20:32 -04:00
|
|
|
end
|
2010-07-19 14:40:28 -04:00
|
|
|
|
2010-07-17 13:05:00 -04:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Find a form field on the page. The field can be found by its name, id or label text.
|
|
|
|
#
|
|
|
|
# @param [String] locator Which field to find
|
|
|
|
# @return [Capybara::Element] The found element
|
|
|
|
#
|
2010-07-09 20:20:32 -04:00
|
|
|
def find_field(locator)
|
2010-08-14 12:35:46 -04:00
|
|
|
find(:xpath, XPath::HTML.field(locator))
|
2010-07-09 20:20:32 -04:00
|
|
|
end
|
|
|
|
alias_method :field_labeled, :find_field
|
|
|
|
|
2010-07-17 13:05:00 -04:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Find a link on the page. The link can be found by its id or text.
|
|
|
|
#
|
|
|
|
# @param [String] locator Which link to find
|
|
|
|
# @return [Capybara::Element] The found element
|
|
|
|
#
|
2010-07-09 20:20:32 -04:00
|
|
|
def find_link(locator)
|
2010-08-14 12:35:46 -04:00
|
|
|
find(:xpath, XPath::HTML.link(locator))
|
2010-07-09 20:20:32 -04:00
|
|
|
end
|
|
|
|
|
2010-07-17 13:05:00 -04:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Find a button on the page. The link can be found by its id, name or value.
|
|
|
|
#
|
|
|
|
# @param [String] locator Which button to find
|
|
|
|
# @return [Capybara::Element] The found element
|
|
|
|
#
|
2010-07-09 20:20:32 -04:00
|
|
|
def find_button(locator)
|
2010-08-14 12:35:46 -04:00
|
|
|
find(:xpath, XPath::HTML.button(locator))
|
2010-07-09 20:20:32 -04:00
|
|
|
end
|
|
|
|
|
2010-07-17 13:05:00 -04:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Find a element on the page, given its id.
|
|
|
|
#
|
|
|
|
# @param [String] locator Which element to find
|
|
|
|
# @return [Capybara::Element] The found element
|
|
|
|
#
|
2010-07-09 20:20:32 -04:00
|
|
|
def find_by_id(id)
|
|
|
|
find(:css, "##{id}")
|
|
|
|
end
|
|
|
|
|
2010-07-17 13:05:00 -04:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Find all elements on the page matching the given selector
|
|
|
|
# and options.
|
|
|
|
#
|
|
|
|
# Both XPath and CSS expressions are supported, but Capybara
|
|
|
|
# does not try to automatically distinguish between them. The
|
|
|
|
# following statements are equivalent:
|
|
|
|
#
|
|
|
|
# page.all(:css, 'a#person_123')
|
|
|
|
# page.all(:xpath, '//a[@id="person_123"]')
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# If the type of selector is left out, Capybara uses
|
2010-08-27 14:52:06 -04:00
|
|
|
# {Capybara.default_selector}. It's set to :css by default.
|
2010-07-17 13:05:00 -04:00
|
|
|
#
|
|
|
|
# page.all("a#person_123")
|
|
|
|
#
|
|
|
|
# Capybara.default_selector = :xpath
|
|
|
|
# page.all('//a[@id="person_123"]')
|
|
|
|
#
|
|
|
|
# The set of found elements can further be restricted by specifying
|
|
|
|
# options. It's possible to select elements by their text or visibility:
|
|
|
|
#
|
|
|
|
# page.all('a', :text => 'Home')
|
|
|
|
# page.all('#menu li', :visible => true)
|
|
|
|
#
|
2011-12-28 16:31:49 -05:00
|
|
|
# @overload all([kind], locator, options)
|
|
|
|
# @param [:css, :xpath] kind The type of selector
|
|
|
|
# @param [String] locator The selector
|
|
|
|
# @option options [String, Regexp] text Only find elements which contain this text or match this regexp
|
|
|
|
# @option options [Boolean] visible Only find elements that are visible on the page. Setting this to false
|
|
|
|
# (the default, unless Capybara.ignore_hidden_elements = true), finds
|
|
|
|
# invisible _and_ visible elements.
|
|
|
|
# @return [Array[Capybara::Element]] The found elements
|
2010-07-17 13:05:00 -04:00
|
|
|
#
|
2010-07-09 20:20:32 -04:00
|
|
|
def all(*args)
|
2010-12-22 22:24:20 -05:00
|
|
|
options = extract_normalized_options(args)
|
2010-07-09 20:20:32 -04:00
|
|
|
|
2011-07-13 09:39:17 -04:00
|
|
|
selector = Capybara::Selector.normalize(*args)
|
|
|
|
selector.xpaths.
|
|
|
|
map { |path| find_in_base(selector, path) }.flatten.
|
|
|
|
select { |node| matches_options(node, options) }
|
2010-12-22 22:24:20 -05:00
|
|
|
end
|
2010-07-09 20:20:32 -04:00
|
|
|
|
2010-12-22 22:24:20 -05:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# Find the first element on the page matching the given selector
|
|
|
|
# and options, or nil if no element matches.
|
|
|
|
#
|
|
|
|
# When only the first matching element is needed, this method can
|
|
|
|
# be faster than all(*args).first.
|
|
|
|
#
|
2011-12-28 16:31:49 -05:00
|
|
|
# @overload first([kind], locator, options)
|
|
|
|
# @param [:css, :xpath] kind The type of selector
|
|
|
|
# @param [String] locator The selector
|
|
|
|
# @param [Hash] options Additional options; see {all}
|
|
|
|
# @return [Capybara::Element] The found element or nil
|
2010-12-22 22:24:20 -05:00
|
|
|
#
|
|
|
|
def first(*args)
|
|
|
|
options = extract_normalized_options(args)
|
2011-02-08 10:05:57 -05:00
|
|
|
found_elements = []
|
2010-12-22 22:24:20 -05:00
|
|
|
|
2011-07-13 09:39:17 -04:00
|
|
|
selector = Capybara::Selector.normalize(*args)
|
|
|
|
selector.xpaths.each do |path|
|
|
|
|
find_in_base(selector, path).each do |node|
|
2010-12-22 22:24:20 -05:00
|
|
|
if matches_options(node, options)
|
2011-07-13 09:39:17 -04:00
|
|
|
found_elements << node
|
2011-02-08 10:05:57 -05:00
|
|
|
return found_elements.last if not Capybara.prefer_visible_elements or node.visible?
|
2010-12-22 22:24:20 -05:00
|
|
|
end
|
|
|
|
end
|
2010-07-09 20:20:32 -04:00
|
|
|
end
|
2011-02-08 10:05:57 -05:00
|
|
|
found_elements.first
|
2010-12-22 22:24:20 -05:00
|
|
|
end
|
2010-12-23 13:38:44 -05:00
|
|
|
|
2010-12-22 22:24:20 -05:00
|
|
|
protected
|
2010-12-23 13:38:44 -05:00
|
|
|
|
2011-08-12 07:52:12 -04:00
|
|
|
def raise_find_error(*args)
|
|
|
|
options = extract_normalized_options(args)
|
|
|
|
normalized = Capybara::Selector.normalize(*args)
|
|
|
|
message = options[:message] || "Unable to find #{normalized.name} #{normalized.locator.inspect}"
|
|
|
|
message = normalized.failure_message.call(self, normalized) if normalized.failure_message
|
|
|
|
raise Capybara::ElementNotFound, message
|
|
|
|
end
|
|
|
|
|
2011-07-13 09:39:17 -04:00
|
|
|
def find_in_base(selector, xpath)
|
|
|
|
base.find(xpath).map do |node|
|
|
|
|
Capybara::Node::Element.new(session, node, self, selector)
|
|
|
|
end
|
2010-12-22 22:24:20 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def extract_normalized_options(args)
|
|
|
|
options = if args.last.is_a?(Hash) then args.pop.dup else {} end
|
|
|
|
|
|
|
|
if text = options[:text]
|
|
|
|
options[:text] = Regexp.escape(text) unless text.kind_of?(Regexp)
|
2010-12-23 13:38:44 -05:00
|
|
|
end
|
|
|
|
|
2010-12-22 22:24:20 -05:00
|
|
|
if !options.has_key?(:visible)
|
|
|
|
options[:visible] = Capybara.ignore_hidden_elements
|
2010-12-22 10:10:42 -05:00
|
|
|
end
|
|
|
|
|
2010-12-22 22:24:20 -05:00
|
|
|
if selected = options[:selected]
|
|
|
|
options[:selected] = [selected].flatten
|
2010-07-09 20:20:32 -04:00
|
|
|
end
|
|
|
|
|
2010-12-22 22:24:20 -05:00
|
|
|
options
|
2010-07-09 20:20:32 -04:00
|
|
|
end
|
|
|
|
|
2010-12-22 22:24:20 -05:00
|
|
|
def matches_options(node, options)
|
|
|
|
return false if options[:text] and not node.text.match(options[:text])
|
|
|
|
return false if options[:visible] and not node.visible?
|
|
|
|
return false if options[:with] and not node.value == options[:with]
|
|
|
|
return false if options[:checked] and not node.checked?
|
|
|
|
return false if options[:unchecked] and node.checked?
|
|
|
|
return false if options[:selected] and not has_selected_options?(node, options[:selected])
|
|
|
|
true
|
2010-11-12 15:46:46 -05:00
|
|
|
end
|
|
|
|
|
2010-12-23 13:38:44 -05:00
|
|
|
def has_selected_options?(node, expected)
|
2011-07-13 09:39:17 -04:00
|
|
|
actual = node.all(:xpath, './/option').select { |option| option.selected? }.map { |option| option.text }
|
2010-12-23 13:38:44 -05:00
|
|
|
(expected - actual).empty?
|
|
|
|
end
|
2010-07-09 20:20:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|