MCPcopy Index your code
hub / github.com/SeleniumHQ/selenium / doubleClick

Method doubleClick

javascript/selenium-webdriver/lib/input.js:917–919  ·  view source on GitHub ↗

* Short-hand for performing a double left-click with the mouse. * * @param {./webdriver.WebElement=} element If specified, the mouse will * first be moved to the center of the element before performing the * click. * @return {!Actions} a self reference.

(element)

Source from the content-addressed store, hash-verified

915 * @return {!Actions} a self reference.
916 */
917 doubleClick(element) {
918 return this.click(element).press().release()
919 }
920
921 /**
922 * Configures a drag-and-drop action consisting of the following steps:

Callers 2

actions_test.jsFile · 0.45
input_test.jsFile · 0.45

Calls 3

clickMethod · 0.95
releaseMethod · 0.45
pressMethod · 0.45

Tested by

no test coverage detected