Set No Cache and Reset No Cache

setNoCache API is required when the browser is caching some calls (mostly seen on .js files) that make some requests not to be added to its state.

resetNoCache API resets the state back to normal.

This API is also required when creating Appvance AI blueprints for some of the applications.

Example usage below:

JavaScript:

navigateTo("http://demosite.appvance.com ");

wait(30000);

setNoCache("http://demosite.appvance.com ");

click(link("iPad"));

wait(30000);

click(link("iPhone"));

wait(30000);

resetNoCache("http://demosite.appvance.com ");

click(link("Music"));

Before calling 'setNoCache' API:

After calling 'setNoCache' API: