Session Storage - Instructions
Session Storage is used to store user data which is temporary for the session and will be automatically deleted when the browser is closed.
Functionality
This page creates two session storage items userData and userSessionId.
The data can be deleted or re-created using the on page buttons.
Testing
Use the Developer tools and check the Application Storage section to check the creation and values of the data.
You should be able to amend and delete the data from the application storage.
Check that the data is automatically removed when the browser is closed.
Automating
Your automation tool may have features to let you create and session storage.
Use those features on this page to work with userData and userSessionId.
Create some automated coverage to check that the data is deleted when the browser is closed.
If your tool does not have features to work with session storage then you may be able to use the JavaScript execution features of your tool to interact with Session Storage.