Method: Selenium::WebDriver::Mouse#double_click

Defined in:
lib/selenium/webdriver/common/mouse.rb

#double_click(element = nil) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

[View source]

16
17
18
19
# File 'lib/selenium/webdriver/common/mouse.rb', line 16

def double_click(element = nil)
  move_if_needed element
  @bridge.doubleClick
end