mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
Node::Actions doc correction
This commit is contained in:
parent
0062f7f432
commit
e73e77690b
1 changed files with 6 additions and 5 deletions
|
@ -104,7 +104,7 @@ module Capybara
|
||||||
#
|
#
|
||||||
# page.select 'March', :from => 'Month'
|
# page.select 'March', :from => 'Month'
|
||||||
#
|
#
|
||||||
# @param [String] locator Which check box to uncheck
|
# @param [String] value Which option to select
|
||||||
# @param [Hash{:from => String}] The id, name or label of the select box
|
# @param [Hash{:from => String}] The id, name or label of the select box
|
||||||
#
|
#
|
||||||
def select(value, options={})
|
def select(value, options={})
|
||||||
|
@ -121,13 +121,14 @@ module Capybara
|
||||||
|
|
||||||
##
|
##
|
||||||
#
|
#
|
||||||
# Find a select box on the page and select a particular option from it. If the select
|
# Find a select box on the page and unselect a particular option from it. If the select
|
||||||
# box is a multiple select, +select+ can be called multiple times to select more than
|
# box is a multiple select, +unselect+ can be called multiple times to unselect more than
|
||||||
# one option. The select box can be found via its name, id or label text.
|
# one option. The select box can be found via its name, id or label text.
|
||||||
#
|
#
|
||||||
# page.uncheck('German')
|
# page.unselect 'March', :from => 'Month'
|
||||||
#
|
#
|
||||||
# @param [String] locator Which check box to uncheck
|
# @param [String] value Which option to unselect
|
||||||
|
# @param [Hash{:from => String}] The id, name or label of the select box
|
||||||
#
|
#
|
||||||
def unselect(value, options={})
|
def unselect(value, options={})
|
||||||
if options.has_key?(:from)
|
if options.has_key?(:from)
|
||||||
|
|
Loading…
Reference in a new issue