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,32 @@
/**
*
* Set the amount of time the driver should wait when searching for elements. When searching for a single element,
* the driver should poll the page until an element is found or the timeout expires, whichever occurs first. When
* searching for multiple elements, the driver should poll the page until at least one element is found or the
* timeout expires, at which point it should return an empty list.
*
* If this command is never sent, the driver should default to an implicit wait of 0ms.
*
* Depcrecated! Please use the `timeouts` command instead.
*
* @param {Number} ms The amount of time to wait, in milliseconds. This value has a lower bound of 0.
*
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#sessionsessionidtimeoutsimplicit_wait
* @type protocol
*
*/
import { ProtocolError } from '../utils/ErrorHandler'
import depcrecate from '../helpers/depcrecationWarning'
export default function timeoutsImplicitWait (ms) {
/*!
* parameter check
*/
if (typeof ms !== 'number') {
throw new ProtocolError('number or type of arguments don\'t agree with timeoutsImplicitWait protocol command')
}
depcrecate('timeoutsImplicitWait')
return this.requestHandler.create('/session/:sessionId/timeouts/implicit_wait', { ms })
}