Apr 22 2014
VBA: Read localstorage variable from Internet Explorer Object using temporary textfield
Here is a toy solution to access localstorage variables if they are not accessible directly.
Imagine we have test HTML webpage with HTML:
<html> <body> <script> // Put the object into storage localStorage.setItem('testObject', 'testString'); // Retrieve the object from storage var retrievedObject = localStorage.getItem('testObject'); </script> </body> </html>
Recent Comments