3131import static org .openqa .selenium .testing .Driver .CHROME ;
3232import static org .openqa .selenium .testing .Driver .FIREFOX ;
3333import static org .openqa .selenium .testing .Driver .IE ;
34+ import static org .openqa .selenium .testing .Driver .MARIONETTE ;
3435import static org .openqa .selenium .testing .Driver .PHANTOMJS ;
3536import static org .openqa .selenium .testing .Driver .REMOTE ;
3637import static org .openqa .selenium .testing .Driver .SAFARI ;
@@ -367,6 +368,7 @@ public void testCookieEqualityAfterSetAndGet() {
367368 assertEquals (addedCookie , retrievedCookie );
368369 }
369370
371+ @ Ignore (value = MARIONETTE , reason = "https://github.com/mozilla/geckodriver/issues/463" )
370372 @ Test
371373 public void testRetainsCookieExpiry () {
372374 Cookie addedCookie =
@@ -381,7 +383,8 @@ public void testRetainsCookieExpiry() {
381383 assertEquals (addedCookie .getExpiry (), retrieved .getExpiry ());
382384 }
383385
384- @ Ignore (value = {IE , PHANTOMJS , SAFARI })
386+ @ Ignore (value = {IE , PHANTOMJS , SAFARI , MARIONETTE },
387+ reason = "Marionette cannot open secure page" )
385388 @ Test
386389 public void canHandleSecureCookie () {
387390 driver .get (domainHelper .getSecureUrlForFirstValidHostname ("animals" ));
@@ -399,7 +402,8 @@ public void canHandleSecureCookie() {
399402 assertNotNull (retrieved );
400403 }
401404
402- @ Ignore (value = {IE , PHANTOMJS , SAFARI })
405+ @ Ignore (value = {IE , PHANTOMJS , SAFARI , MARIONETTE },
406+ reason = "Marionette cannot open secure page" )
403407 @ Test
404408 public void testRetainsCookieSecure () {
405409 driver .get (domainHelper .getSecureUrlForFirstValidHostname ("animals" ));
0 commit comments