@testim/testim-cli
Version:
Command line interface for running Testing on you CI
18 lines (15 loc) • 419 B
JavaScript
/**
*
* Get available log types.
*
* @returns {Strings[]} The list of available [log types](https://code.google.com/p/selenium/wiki/JsonWireProtocol#Log_Type)
*
* @see https://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/log/types
* @type protocol
*
*/
module.exports = function logTypes () {
return this.requestHandler.create(
'/session/:sessionId/log/types'
);
};