* 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)
| 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: |
no test coverage detected