Cleaning local and session storage

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.

How to do it...

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);"); ...

Get Selenium Testing Tools Cookbook - Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.