@testim/testim-cli
Version:
Command line interface for running Testing on you CI
18 lines (15 loc) • 330 B
JavaScript
/**
*
* Get the current page title.
*
* @returns {String} The current page title.
*
* @see https://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/title
* @type protocol
*
*/
module.exports = function title () {
return this.requestHandler.create(
'/session/:sessionId/title'
);
};