Method: Webdrone::XPath#radio_button

Defined in:
lib/webdrone/xpath.rb

#radio_button(locator) ⇒ Object

Match any ‘input` element of type `radio`.

Parameters:

  • locator (String)

    Label, id, or name of the radio button to match

[View source]

102
103
104
105
# File 'lib/webdrone/xpath.rb', line 102

def radio_button(locator)
  locator = locator.to_s
  locate_field(descendant(:input)[attr(:type).equals('radio')], locator)
end