Method: Webdrone::XPath#button
- Defined in:
- lib/webdrone/xpath.rb
permalink #button(locator) ⇒ Object
Match a ‘submit`, `image`, or `button` element.
26 27 28 29 30 31 |
# File 'lib/webdrone/xpath.rb', line 26 def (locator) locator = locator.to_s = descendant(:input)[attr(:type).one_of('submit', 'reset', 'image', 'button')][attr(:id).equals(locator) | attr(:value).is(locator) | attr(:title).is(locator)] += descendant(:button)[attr(:id).equals(locator) | attr(:value).is(locator) | string.n.is(locator) | attr(:title).is(locator)] + descendant(:input)[attr(:type).equals('image')][attr(:alt).is(locator)] end |