selenium tutorial testing tools

How to delete Cookies in Selenium Webdriver

Delete Cookie
Delete Cookie with Name
Delete All Cookies

User can delete a cookie from the browser's "cookie jar". The domain of the cookie will be ignored.

User can delete the named cookie from the current domain. This is equivalent to setting the named cookie's expiry date to sometime in the past.

User can also delete all the cookies for the current domain using driver.manage().deleteAllCookies();

Example:

Deleting the specific cookie with cookie name "--utmb"

@Test
	public void deleteCookieNamedExample()
	{
		driver= new FirefoxDriver();
		String URL="http://www.flipkart.com";
		driver.navigate().to(URL);
		driver.manage().deleteCookieNamed("__utmb");
	}

Deleting all the cookies of the domain

@Test
	public void deleteAllCookiesExample()
	{
		driver= new FirefoxDriver();
		String URL="http://www.flipcart.com";
		driver.navigate().to(URL);
		driver.manage().deleteAllCookies();
	}
Selenium Tutorials: 

Add new comment

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
CAPTCHA
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Enter the characters shown in the image.