Is there possibility to write data to localStorge in before hooks ? #2833
Unanswered
pawlakmaly
asked this question in
Help Needed
Replies: 1 comment 2 replies
-
Yes, you may use the following code to write data using the local storage in the before hook. before((browser) => {
browser.url('https://ecosia.org/')
.waitForElementVisible('body')
.execute(() => {
localStorage.setItem('myCat', 'Tom');
});
}); let me know if you need any other help |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there possibility to write data to localStorge in beforeHooks before the page is loaded ?
Beta Was this translation helpful? Give feedback.
All reactions