Method: ButtonHelper#double_click_button

Defined in:
lib/watir_helper/button_helper.rb

#double_click_button(browser_handle, property, property_value) ⇒ Object

Double Click a button.



19
20
21
# File 'lib/watir_helper/button_helper.rb', line 19

def double_click_button(browser_handle, property, property_value)
  browser_handle.button(property.intern, /#{property_value}/).fire_event("ondblclick")
end