Method: Webdrone::XPath#button

Defined in:
lib/webdrone/xpath.rb

#button(locator) ⇒ Object

Match a ‘submit`, `image`, or `button` element.

Parameters:

  • locator (String)

    Value, title, id, or image alt attribute of the button

[View source]

26
27
28
29
30
31
# File 'lib/webdrone/xpath.rb', line 26

def button(locator)
  locator = locator.to_s
  button = descendant(:input)[attr(:type).one_of('submit', 'reset', 'image', 'button')][attr(:id).equals(locator) | attr(:value).is(locator) | attr(:title).is(locator)]
  button += descendant(:button)[attr(:id).equals(locator) | attr(:value).is(locator) | string.n.is(locator) | attr(:title).is(locator)]
  button + descendant(:input)[attr(:type).equals('image')][attr(:alt).is(locator)]
end