@testim/testim-cli
Version:
Command line interface for running Testing on you CI
20 lines (15 loc) • 360 B
JavaScript
/**
*
* Refresh the current page.
*
* @see https://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/refresh
* @type protocol
*
*/
module.exports = function refresh() {
var requestOptions = {
path: '/session/:sessionId/refresh',
method: 'POST'
};
return this.requestHandler.create(requestOptions);
};