Current Dev State

This commit is contained in:
Tim Lorsbach
2025-06-23 20:13:54 +02:00
parent b4f9bb277d
commit ded50edaa2
22617 changed files with 4345095 additions and 174 deletions

View File

@ -0,0 +1,21 @@
/**
*
* Double-clicks at the current mouse coordinates (set by moveto.
*
* This command is depcrecated and will be removed soon. Make sure you don't use it in your
* automation/test scripts anymore to avoid errors.
*
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#sessionsessioniddoubleclick
* @type protocol
*
*/
import depcrecate from '../helpers/depcrecationWarning'
export default function doDoubleClick () {
depcrecate('doDoubleClick')
return this.requestHandler.create({
path: '/session/:sessionId/doubleclick',
method: 'POST'
})
}