Skip to content

Commit f919e5c

Browse files
committed
Ignoring failing cookie test for IE
The IE driver can correctly handle cookies with the 'secure' flag set, but the browser throws up a mandatory, unignorable interstitial page when the site in question uses an untrusted SSL certificate. Until and unless a technique for dealing with this interstitial page automatically can be found, this test, or any test requiring browsing via https, must be ignored in this test suite.
1 parent cdf57da commit f919e5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: java/client/test/org/openqa/selenium/CookieImplementationTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ public void testRetainsCookieExpiry() {
382382
assertEquals(addedCookie.getExpiry(), retrieved.getExpiry());
383383
}
384384

385-
@Ignore(value = {PHANTOMJS, SAFARI})
385+
@Ignore(value = {IE, PHANTOMJS, SAFARI})
386386
@Test
387387
public void canHandleSecureCookie() {
388388
driver.get(domainHelper.getSecureUrlForFirstValidHostname("animals"));

0 commit comments

Comments
 (0)