I'm using Selenium 2.17 with chibimagic's php webdriver bindings to
run tests with phpunit. Everything is fine with Firefox and co but I
have an issue with Internet Explorer retaining cookies from the
previous tests, such as logins, etc.
I tried doing something like $this->delete_all_cookies() and $this-
>driver->delete_all_cookies() before each test but that doesn't seem
to do anything.
I also tried setting desired capability such as:
$this->driver = WebDriver_Driver::InitAtHost("
somehost.com" ,"4444",
"internet explorer",array('ENSURING_CLEAN_SESSION' => true));
This also doesn't have any effect on the cookies status.
Any help would be appreciated. Thanks!