Module: Capybara::Node::Actions
- Included in:
- Base
- Defined in:
- lib/capybara/node/actions.rb
Instance Method Summary collapse
-
#attach_file([locator], path, **options) ⇒ Capybara::Node::Element
Find a file field on the page and attach a file given its path.
-
#check([locator], **options) ⇒ Capybara::Node::Element
Find a check box and mark it as checked.
-
#choose([locator], **options) ⇒ Capybara::Node::Element
Find a radio button and mark it as checked.
-
#click_button([locator], **options) ⇒ Capybara::Node::Element
Finds a button on the page and clicks it.
-
#click_link([locator], options) ⇒ Capybara::Node::Element
Finds a link by id, text or title and clicks it.
-
#click_link_or_button([locator], options) ⇒ Capybara::Node::Element
(also: #click_on)
Finds a button or link and clicks it.
-
#fill_in([locator], with: , **options) ⇒ Capybara::Node::Element
Locate a text field or text area and fill it in with the given text The field can be found via its name, id or label text.
-
#select(value = nil, from: nil, **options) ⇒ Capybara::Node::Element
If ‘:from` option is present, `select` finds a select box, or text input with associated datalist, on the page and selects a particular option from it.
-
#uncheck([locator], **options) ⇒ Capybara::Node::Element
Find a check box and mark uncheck it.
-
#unselect(value = nil, from: nil, **options) ⇒ Capybara::Node::Element
Find a select box on the page and unselect a particular option from it.
Instance Method Details
#attach_file([locator], path, **options) ⇒ Capybara::Node::Element
Find a file field on the page and attach a file given its path. The file field can be found via its name, id or label text.
page.attach_file(locator, '/path/to/file.png')
227 228 229 230 231 232 233 234 235 236 237 238 |
# File 'lib/capybara/node/actions.rb', line 227 def attach_file(locator = nil, path, make_visible: nil, **) # rubocop:disable Style/OptionalArguments Array(path).each do |p| raise Capybara::FileNotFound, "cannot attach file, #{p} does not exist" unless File.exist?(p.to_s) end # Allow user to update the CSS style of the file input since they are so often hidden on a page if make_visible ff = find(:file_field, locator, .merge(visible: :all)) while_visible(ff, make_visible) { |el| el.set(path) } else find(:file_field, locator, ).set(path) end end |
#check([locator], **options) ⇒ Capybara::Node::Element
Find a check box and mark it as checked. The check box can be found via name, id or label text.
page.check('German')
132 133 134 |
# File 'lib/capybara/node/actions.rb', line 132 def check(locator = nil, **) _check_with_label(:checkbox, true, locator, ) end |
#choose([locator], **options) ⇒ Capybara::Node::Element
Find a radio button and mark it as checked. The radio button can be found via name, id or label text.
page.choose('Male')
109 110 111 |
# File 'lib/capybara/node/actions.rb', line 109 def choose(locator = nil, **) _check_with_label(:radio_button, true, locator, ) end |
#click_button([locator], **options) ⇒ Capybara::Node::Element
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
If the driver is capable of executing JavaScript, click_button
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_max_wait_time
57 58 59 |
# File 'lib/capybara/node/actions.rb', line 57 def (locator = nil, **) find(:button, locator, ).click end |
#click_link([locator], options) ⇒ Capybara::Node::Element
Finds a link by id, text or title and clicks it. Also looks at image alt text inside the link.
If the driver is capable of executing JavaScript, click_link
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_max_wait_time
40 41 42 |
# File 'lib/capybara/node/actions.rb', line 40 def click_link(locator = nil, **) find(:link, locator, ).click end |
#click_link_or_button([locator], options) ⇒ Capybara::Node::Element Also known as: click_on
Finds a button or link and clicks it. See #click_button and #click_link for what locator will match against for each type of element If the driver is capable of executing JavaScript, click_link_or_button
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_max_wait_time
23 24 25 |
# File 'lib/capybara/node/actions.rb', line 23 def (locator = nil, **) find(:link_or_button, locator, ).click end |
#fill_in([locator], with: , **options) ⇒ Capybara::Node::Element
Locate a text field or text area and fill it in with the given text The field can be found via its name, id or label text.
page.fill_in 'Name', with: 'Bob'
83 84 85 86 |
# File 'lib/capybara/node/actions.rb', line 83 def fill_in(locator = nil, with:, fill_options: {}, **) [:with] = .delete(:currently_with) if .key?(:currently_with) find(:fillable_field, locator, ).set(with, ) end |
#select(value = nil, from: nil, **options) ⇒ Capybara::Node::Element
If ‘:from` option is present, `select` finds a select box, or text input with associated datalist, on the page and selects a particular option from it. Otherwise it finds an option inside current scope and selects it. If the select box is a multiple select, select
can be called multiple times to select more than one option. The select box can be found via its name, id or label text. The option can be found by its text.
page.select 'March', from: 'Month'
If the driver is capable of executing JavaScript, select
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_max_wait_time
176 177 178 179 180 181 182 183 184 |
# File 'lib/capybara/node/actions.rb', line 176 def select(value = nil, from: nil, **) el = from ? find_select_or_datalist_input(from, ) : self if el.respond_to?(:tag_name) && (el.tag_name == "input") select_datalist_option(el, value) else el.find(:option, value, ).select_option end end |
#uncheck([locator], **options) ⇒ Capybara::Node::Element
Find a check box and mark uncheck it. The check box can be found via name, id or label text.
page.uncheck('German')
155 156 157 |
# File 'lib/capybara/node/actions.rb', line 155 def uncheck(locator = nil, **) _check_with_label(:checkbox, false, locator, ) end |
#unselect(value = nil, from: nil, **options) ⇒ Capybara::Node::Element
Find a select box on the page and unselect a particular option from it. If the select 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.
page.unselect 'March', from: 'Month'
If the driver is capable of executing JavaScript, unselect
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_max_wait_time
200 201 202 203 |
# File 'lib/capybara/node/actions.rb', line 200 def unselect(value = nil, from: nil, **) scope = from ? find(:select, from, ) : self scope.find(:option, value, ).unselect_option end |