I have a question: is it possible to continue the execution of one test if I have a previously closed browser?
For example, I want to check if a user is registered in my application, even when I restart the browser. I want to check this with the Remember Me checkbox and without it.
After logging in my user system in the application, I will try:
browser.close();
but the test ends and cannot be continued. If I try with this:
browser.get(""); browser.get("about:blank");
only the empty tab is open and verification is completed. If I try:
browser.quit();
than the whole session is killed and the test is completed,
If someone knows a solution or has some ideas, answer. thanks
source share