@testim/testim-cli
Version:
Command line interface for running Testing on you CI
18 lines (15 loc) • 433 B
JavaScript
/**
*
* Get the name of the active IME engine. The name string is platform specific.
*
* @returns {String} engine The name of the active IME engine.
*
* @see https://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/ime/active_engine
* @type protocol
*
*/
module.exports = function imeActiveEngine () {
return this.requestHandler.create(
'/session/:sessionId/ime/active_engine'
);
};