Method: Webdrone::XPath#radio_button
- Defined in:
- lib/webdrone/xpath.rb
permalink #radio_button(locator) ⇒ Object
Match any ‘input` element of type `radio`.
102 103 104 105 |
# File 'lib/webdrone/xpath.rb', line 102 def (locator) locator = locator.to_s locate_field(descendant(:input)[attr(:type).equals('radio')], locator) end |