@testim/testim-cli
Version:
Command line interface for running Testing on you CI
18 lines (15 loc) • 449 B
JavaScript
/**
*
* Indicates whether IME input is active at the moment (not if it's available).
*
* @returns {boolean} true if IME input is available and currently active, false otherwise
*
* @see https://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/ime/activated
* @type protocol
*
*/
module.exports = function imeActivated () {
return this.requestHandler.create(
'/session/:sessionId/ime/activated'
);
};