.doubleClick() Suggest edits
Since: 3.0.0Move to the element and peforms a double-click in the middle of the element.
The command doubleClick()
will automatically wait for the element to be present (until the specified timeout). If the element is not found, an error is thrown which will cause the test to fail. You can suppress element not found errors by specifying the selector
argument as an object and passing the suppressNotFoundErrors = true
option.
For more info on working with DOM elements in Nightwatch, refer to the Finding & interacting with DOM Elements guide page.
Usage
browser.element(selector).doubleClick()
Example
export default {
demoTest(browser: NightwatchAPI): void {
browser.element('button.submit-form').doubleClick();
},
async demoTestAsync(browser: NightwatchAPI): Promise<void> {
await browser.element('button.submit-form').doubleClick();
}
}
Returns
Type | description |
---|---|
ScopedWebElement |