Currently, I am testing a login/logout application with the help of protractor.
One challenge I am facing is dealing with a popup that appears after each login/logout scenario.
In order to ensure the popup appears after each login, I need to reset the IE browser session every time the browser restarts.
I have attempted using
browser.driver.manage().deleteCookie();
and browser.driver.manage().deleteAllCookies();
but unfortunately, I am not able to clear the session in the IE browser.
If you have any suggestions for a workaround that allows me to clean the session after each iteration, please feel free to share. Thank you in advance, A Happy Tester.:-)