@@ -96,7 +96,6 @@ public void testShouldGetCookieByName() {
96
96
97
97
@ JavascriptEnabled
98
98
@ Test
99
- @ Ignore (MARIONETTE )
100
99
public void testShouldBeAbleToAddCookie () {
101
100
String key = generateUniqueKey ();
102
101
String value = "foo" ;
@@ -112,7 +111,6 @@ public void testShouldBeAbleToAddCookie() {
112
111
}
113
112
114
113
@ Test
115
- @ Ignore (MARIONETTE )
116
114
public void testGetAllCookies () {
117
115
String key1 = generateUniqueKey ();
118
116
String key2 = generateUniqueKey ();
@@ -139,7 +137,6 @@ public void testGetAllCookies() {
139
137
140
138
@ JavascriptEnabled
141
139
@ Test
142
- @ Ignore (MARIONETTE )
143
140
public void testDeleteAllCookies () {
144
141
addCookieOnServerSide (new Cookie ("foo" , "set" ));
145
142
assertSomeCookiesArePresent ();
@@ -175,7 +172,6 @@ public void testDeleteCookieWithName() {
175
172
}
176
173
177
174
@ Test
178
- @ Ignore (MARIONETTE )
179
175
public void testShouldNotDeleteCookiesWithASimilarName () {
180
176
String cookieOneName = "fish" ;
181
177
Cookie cookie1 = new Cookie .Builder (cookieOneName , "cod" ).build ();
@@ -196,7 +192,6 @@ public void testShouldNotDeleteCookiesWithASimilarName() {
196
192
}
197
193
198
194
@ Test
199
- @ Ignore (MARIONETTE )
200
195
public void testAddCookiesWithDifferentPathsThatAreRelatedToOurs () {
201
196
driver .get (domainHelper .getUrlForFirstValidHostname ("/common/animals" ));
202
197
Cookie cookie1 = new Cookie .Builder ("fish" , "cod" ).path ("/common/animals" ).build ();
@@ -214,7 +209,7 @@ public void testAddCookiesWithDifferentPathsThatAreRelatedToOurs() {
214
209
assertCookieIsNotPresentWithName (cookie1 .getName ());
215
210
}
216
211
217
- @ Ignore (value = {CHROME , PHANTOMJS , SAFARI , MARIONETTE })
212
+ @ Ignore (value = {CHROME , PHANTOMJS , SAFARI })
218
213
@ NoDriverAfterTest // So that next test never starts with "inside a frame" base state.
219
214
@ Test
220
215
public void testGetCookiesInAFrame () {
@@ -229,7 +224,7 @@ public void testGetCookiesInAFrame() {
229
224
assertCookieIsPresentWithName (cookie1 .getName ());
230
225
}
231
226
232
- @ Ignore ({CHROME , MARIONETTE })
227
+ @ Ignore ({CHROME })
233
228
@ Test
234
229
public void testCannotGetCookiesWithPathDifferingOnlyInCase () {
235
230
String cookieName = "fish" ;
@@ -254,7 +249,7 @@ public void testShouldNotGetCookieOnDifferentDomain() {
254
249
assertCookieIsNotPresentWithName (cookieName );
255
250
}
256
251
257
- @ Ignore (value = {CHROME , MARIONETTE })
252
+ @ Ignore (value = {CHROME })
258
253
@ Test
259
254
public void testShouldBeAbleToAddToADomainWhichIsRelatedToTheCurrentDomain () {
260
255
String cookieName = "name" ;
@@ -279,7 +274,7 @@ public void testsShouldNotGetCookiesRelatedToCurrentDomainWithoutLeadingPeriod()
279
274
assertCookieIsNotPresentWithName (cookieName );
280
275
}
281
276
282
- @ Ignore ({REMOTE , MARIONETTE })
277
+ @ Ignore ({REMOTE })
283
278
@ Test
284
279
public void testShouldBeAbleToIncludeLeadingPeriodInDomainName () throws Exception {
285
280
String cookieName = "name" ;
@@ -294,7 +289,6 @@ public void testShouldBeAbleToIncludeLeadingPeriodInDomainName() throws Exceptio
294
289
}
295
290
296
291
@ Test
297
- @ Ignore (MARIONETTE )
298
292
public void testShouldBeAbleToSetDomainToTheCurrentDomain () throws Exception {
299
293
URI url = new URI (driver .getCurrentUrl ());
300
294
String host = url .getHost () + ":" + url .getPort ();
@@ -308,7 +302,6 @@ public void testShouldBeAbleToSetDomainToTheCurrentDomain() throws Exception {
308
302
}
309
303
310
304
@ Test
311
- @ Ignore (MARIONETTE )
312
305
public void testShouldWalkThePathToDeleteACookie () {
313
306
Cookie cookie1 = new Cookie .Builder ("fish" , "cod" ).build ();
314
307
driver .manage ().addCookie (cookie1 );
@@ -337,7 +330,6 @@ public void testShouldWalkThePathToDeleteACookie() {
337
330
}
338
331
339
332
@ Test
340
- @ Ignore (MARIONETTE )
341
333
public void testShouldIgnoreThePortNumberOfTheHostWhenSettingTheCookie () throws Exception {
342
334
URI uri = new URI (driver .getCurrentUrl ());
343
335
String host = String .format ("%s:%d" , uri .getHost (), uri .getPort ());
@@ -352,7 +344,6 @@ public void testShouldIgnoreThePortNumberOfTheHostWhenSettingTheCookie() throws
352
344
}
353
345
354
346
@ Test
355
- @ Ignore (MARIONETTE )
356
347
public void testCookieEqualityAfterSetAndGet () {
357
348
driver .get (domainHelper .getUrlForFirstValidHostname ("animals" ));
358
349
@@ -465,7 +456,6 @@ public void testRetainsHttpOnlyFlag() {
465
456
}
466
457
467
458
@ Test
468
- @ Ignore (MARIONETTE )
469
459
public void testSettingACookieThatExpiredInThePast () {
470
460
long expires = System .currentTimeMillis () - 1000 ;
471
461
Cookie cookie = new Cookie .Builder ("expired" , "yes" ).expiresOn (new Date (expires )).build ();
@@ -477,7 +467,6 @@ public void testSettingACookieThatExpiredInThePast() {
477
467
}
478
468
479
469
@ Test
480
- @ Ignore (MARIONETTE )
481
470
public void testCanSetCookieWithoutOptionalFieldsSet () {
482
471
String key = generateUniqueKey ();
483
472
String value = "foo" ;
0 commit comments