October 2015
Intermediate to advanced
374 pages
7h 31m
English
When tests are run on HTML5 applications using local or session storage, lots of local and session storage entries will be created. When running tests in a batch on an already used environment, cleaning local and session storage is a good idea before you begin your tests.
In this recipe, we will briefly see how to remove local or session storage items and clean the values.
To remove a specific item from local or session storage, you can use the removeItem() method in the following way:
// We can use removeItem method to remove a specific Key along with it's value from local storage JavascriptExecutor jsExecutor = (JavascriptExecutor) driver; jsExecutor.executeScript("localStorage.removeItem(lastname);"); ...Read now
Unlock full access