is there anyway that driver Could remember the logged in session
, so it doesn't take me back to Login
page (e.g. like google-chrome
)?
this is what I'm doing at the moment
public static void main(String[] args) throws Exception {
driver = new ChromeDriver();
// I get redirected to login page
driver.get("http://localhost/interestingStuff");
// logins in to the page and submits(note I try to omit this part if possible).
login();
doStuff();
//I want to be able to keep session next time I start this program.
driver.close();
}