cristifilip
cristifilip

Reputation: 143

Delete cookies in WebDriverJS

How can I delete cookies in WebDriverJS? I want to run some tests on a website that creates login cookies (and I have to clear cookies each time I want to run the tests).

I want to start a clean session each time I run the test. What can I do?

Upvotes: 5

Views: 7196

Answers (1)

Owen Allen
Owen Allen

Reputation: 11978

I can confirm that driver.manage().deleteAllCookies() works in WebDriverJS.

If you view the source and search for deleteAllCookies you'll see the function.

https://code.google.com/p/selenium/source/browse/javascript/webdriver/webdriver.js#1014

Upvotes: 7

Related Questions