Documentation updates - fixes issue #1267 [ci skip]

This commit is contained in:
Thomas Walpole 2015-08-25 14:50:44 -07:00
parent cc407e2fc5
commit 6b7c0eeb41
2 changed files with 12 additions and 7 deletions

View File

@ -20,8 +20,7 @@ module Capybara
# alt text inside the link.
#
# @param [String] locator text, id, title or nested image's alt attribute
# @param options
# @option options [String, Regexp] :href The value the href attribute must equal
# @param options See {Capybara::Node::Finders#find_link}
#
def click_link(locator, options={})
find(:link, locator, options).click
@ -29,10 +28,13 @@ module Capybara
##
#
# Finds a button by id, text, value or title and clicks it.
#
# @param [String] locator Text, id, value or title of button
# Finds a button on the page and clicks it.
# This can be any \<input> element of type submit, reset, image, button or it can be a
# \<button> element. All buttons can be found by their id, value, or title. \<button> elements can also be found
# by their text content, and image \<input> elements by their alt attribute
#
# @param [String] locator Which button to find
# @param options See {Capybara::Node::Finders#find_button}
def click_button(locator, options={})
find(:button, locator, options).click
end

View File

@ -83,8 +83,11 @@ module Capybara
##
#
# Find a button on the page. The button can be found by its id, name or value.
#
# Find a button on the page.
# This can be any \<input> element of type submit, reset, image, button or it can be a
# \<button> element. All buttons can be found by their id, value, or title. \<button> elements can also be found
# by their text content, and image \<input> elements by their alt attribute
# @macro waiting_behavior
#
# @param [String] locator Which button to find