PhantomJS - offlineStorageQuota Property



This property defines the maximum amount of data you can store in window.localStorage. The value is 5242880 bytes which is 5MB. This value can be overwritten at command line using the command --local-storage-quota = size over here.

Syntax

Its syntax is as follows −

var wpage = require('webpage').create();
wpage.offlineStorageQuota

Example

Let us take an example to understand the use of offlineStorageQuota property.

var wpage = require('webpage').create(); 
wpage.open('http://localhost/tasks/page1.html', function (status) {  
   console.log(wpage.offlineStorageQuota);  
   phantom.exit(); 
});

The above program generates the following output.

5242880
phantomjs_webpage_module_properties.htm
Advertisements