Hello.
I want to check success or not during TestCafe running.
Because, I watched developer tool LocalStorage is different with TestCafe and without TestCafe
hammerhead|storages-sandbod-temp is appeared is logged-in?
Hi @moffsugitaYou do not need to check hammerhead manually. If you wish to access a local storage value, use ClientFunction and standard JS methods. For example:
const localStorageGet = ClientFunction(key => localStorage.getItem(key));
You can find more examples in the following thread:
Session and Local storages