@christian-bromann/webdriverio
Version:
A nodejs bindings implementation for selenium 2.0/webdriver
15 lines (12 loc) • 381 B
JavaScript
/**
*
* De-activates the currently-active IME engine. (Not part of the official Webdriver specification)
*
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#sessionsessionidimedeactivate
* @type protocol
*
*/
let imeDeactivated = function () {
return this.requestHandler.create('/session/:sessionId/ime/deactivated')
}
export default imeDeactivated