Do LocalStorage stores differ between a regular browser and Selenium Browser? I've noticed that when I create an item on Selenium Chrome, it disappears after I close the browser. Is this supposed to happen? Additionally, I am unable to read the localStorage from a regular browser.
Edit: To clarify further:
If I enter the following in the console of my Selenium chrome browser
localStorage.setItem("test", "This is a test value");
localStorage.getItem("test");
=> correctly prints "This is a test value"
However, if I close the Selenium chrome browser, reopen it, and try to retrieve the same value on the same page with localStorage.getItem("test");
=> returns null
Despite reading various posts about being able to use localStorage in Selenium, I'm facing this issue.