Module: Capybara::Node::Finders
Instance Method Summary collapse
-
#all(*args) ⇒ Capybara::Element
Find all elements on the page matching the given selector and options.
-
#find(*args) ⇒ Capybara::Element
Find an Element based on the given arguments.
-
#find_button(locator) ⇒ Capybara::Element
Find a button on the page.
-
#find_by_id(id) ⇒ Capybara::Element
Find a element on the page, given its id.
-
#find_field(locator) ⇒ Capybara::Element
(also: #field_labeled)
Find a form field on the page.
-
#find_link(locator) ⇒ Capybara::Element
Find a link on the page.
-
#first(*args) ⇒ Object
Find the first element on the page matching the given selector and options, or nil if no element matches.
Instance Method Details
#all(*args) ⇒ Capybara::Element
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 Capybara.default_selector. It’s set to :css by default.
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)
117 118 119 120 121 122 123 124 |
# File 'lib/capybara/node/finders.rb', line 117 def all(*args) = (args) Capybara::Selector.normalize(*args). map { |path| find_in_base(path) }.flatten. select { |node| (node, ) }. map { |node| convert_element(node) } end |
#find(*args) ⇒ Capybara::Element
Find an Element based on the given arguments. find
will raise an error if the element is not found. The error message can be customized through the :message
option.
If the driver is capable of executing JavaScript, find
will wait for a set amount of time and continuously retry finding the element until either the element is found or the time expires. The length of time find
will wait is controlled through Capybara.default_wait_time and defaults to 2 seconds.
find
takes the same options as all
.
page.find('#foo').find('.bar')
page.find(:xpath, '//div[contains("bar")]')
page.find('li', :text => 'Quox').click_link('Delete')
26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/capybara/node/finders.rb', line 26 def find(*args) begin node = wait_conditionally_until { first(*args) } rescue TimeoutError end unless node = if args.last.is_a?(Hash) then args.last else {} end raise Capybara::ElementNotFound, [:message] || "Unable to find '#{args[1] || args[0]}'" end return node end |
#find_button(locator) ⇒ Capybara::Element
Find a button on the page. The link can be found by its id, name or value.
68 69 70 |
# File 'lib/capybara/node/finders.rb', line 68 def (locator) find(:xpath, XPath::HTML.(locator)) end |
#find_by_id(id) ⇒ Capybara::Element
Find a element on the page, given its id.
79 80 81 |
# File 'lib/capybara/node/finders.rb', line 79 def find_by_id(id) find(:css, "##{id}") end |
#find_field(locator) ⇒ Capybara::Element Also known as: field_labeled
Find a form field on the page. The field can be found by its name, id or label text.
45 46 47 |
# File 'lib/capybara/node/finders.rb', line 45 def find_field(locator) find(:xpath, XPath::HTML.field(locator)) end |
#find_link(locator) ⇒ Capybara::Element
Find a link on the page. The link can be found by its id or text.
57 58 59 |
# File 'lib/capybara/node/finders.rb', line 57 def find_link(locator) find(:xpath, XPath::HTML.link(locator)) end |
#first(*args) ⇒ Object
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.
139 140 141 142 143 144 145 146 147 148 149 150 151 |
# File 'lib/capybara/node/finders.rb', line 139 def first(*args) = (args) Capybara::Selector.normalize(*args).each do |path| find_in_base(path).each do |node| if (node, ) return convert_element(node) end end end nil end |