Answer the question
In order to leave comments, you need to log in
How can I get site cookies and then use them in selenium?
It might be possible to just use the profile in chrome, but how?
Answer the question
In order to leave comments, you need to log in
driver.manage().getCookies(); // Return The List of all Cookies
driver.manage().getCookieNamed(arg0); //Return specific cookie according to name
driver.manage().addCookie(arg0); //Create and add the cookie
driver.manage().deleteCookie(arg0); // Delete specific cookie
driver.manage().deleteCookieNamed(arg0); // Delete specific cookie according Name
driver.manage().deleteAllCookies(); // Delete all cookies
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question