@testim/testim-cli
Version:
Command line interface for running Testing on you CI
19 lines (16 loc) • 416 B
JavaScript
/**
*
* protocol bindings to get local_storage size
*
* @returns {Number} The number of items in the storage.
*
* @see https://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/local_storage/size
* @type protocol
*
*/
module.exports = function localStorageSize() {
// create request
return this.requestHandler.create(
'/session/:sessionId/local_storage/size'
);
};