UNPKG

@christian-bromann/webdriverio

Version:

A nodejs bindings implementation for selenium 2.0/webdriver

30 lines (25 loc) 1.06 kB
/** * Configure the amount of time that a particular type of operation can execute * for before they are aborted and a |Timeout| error is returned to the client. * * @param {String} type The type of operation to set the timeout for. Valid values are:<br>- **script** for script timeouts<br>- **implicit** for modifying the implicit wait timeout<br>- **page load** for setting a page load timeout. * @param {Number} ms The amount of time, in milliseconds, that time-limited commands are permitted to run. * * @see https://w3c.github.io/webdriver/webdriver-spec.html#dfn-set-timeout * @type protocol * */ import { ProtocolError } from '../utils/ErrorHandler' let timeouts = function (type, ms) { /*! * parameter check */ if (typeof type !== 'string' || typeof ms !== 'number') { throw new ProtocolError('number or type of arguments don\'t agree with timeouts protocol command') } return this.requestHandler.create('/session/:sessionId/timeouts', { type: type, ms: ms }) } export default timeouts