UNPKG

@christian-bromann/webdriverio

Version:

A nodejs bindings implementation for selenium 2.0/webdriver

18 lines (15 loc) 521 B
/** * * List all available engines on the machine. To use an engine, it has to be present * in this list. (Not part of the official Webdriver specification) * * @returns {Object[]} engines A list of available engines * * @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#sessionsessionidimeavailable_engines * @type protocol * */ let imeAvailableEngines = function () { return this.requestHandler.create('/session/:sessionId/ime/available_engines') } export default imeAvailableEngines