Clear session cookies with Selenium IDE?

cookies, selenium, selenium-ide

Solution

Found it myself, when I stopped thinking in terms of clear and tried delete:

- deleteAllVisibleCookies

Problem

I'm writing Selenium tests for an ASP application, and would like to test the cases when a session isn't properly initialized. Right now I'm clearing the cookies manually, but that is becoming a bit cumbersome. (ok, to be honest I forget it every fifth-or-so time and have to re-run the tests...) Is there a way in Selenium IDE to clear session cookies or fake a browser re-start?

Original source