webdriverio-workflo
Version:
This is a customized version of webdriverio for use with workflo framework.
22 lines (20 loc) • 579 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = sessionStorageSize;
/**
*
* Protocol bindings to get the session storage size. (Not part of the official
* Webdriver specification).
*
* @return {Number} The number of items in the storage.
*
* @see https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol#sessionsessionidsession_storagesize
* @type protocol
*
*/
function sessionStorageSize() {
return this.requestHandler.create('/session/:sessionId/session_storage/size');
}
module.exports = exports['default'];
;