@christian-bromann/webdriverio
Version:
A nodejs bindings implementation for selenium 2.0/webdriver
20 lines (17 loc) • 516 B
JavaScript
/**
*
* Indicates whether IME input is active at the moment (not if it's available.
* (Not part of the official Webdriver specification)
*
* @returns {boolean} true if IME input is available and currently active, false otherwise
*
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#sessionsessionidimeactivated
* @type protocol
*
*/
let imeActivated = function () {
return this.requestHandler.create(
'/session/:sessionId/ime/activated'
)
}
export default imeActivated