/** * * Double-click on an element. * * :example.html
I was not clicked
:doubleClick.js it('should demonstrate the doubleClick command', async () => { const myButton = await $('#myButton') await myButton.doubleClick() const value = await myButton.getText() assert(value === 'I was dblclicked') // true }) *
* * @alias element.doubleClick * @uses protocol/element, protocol/moveTo, protocol/doDoubleClick, protocol/touchDoubleClick * @type action * */ export declare function doubleClick(this: WebdriverIO.Element): Promise; //# sourceMappingURL=doubleClick.d.ts.map