@@ -91,14 +91,14 @@ public void testShouldNotBeAbleToLocateByIdMultipleElementsThatDoNotExist() {
91
91
}
92
92
93
93
@ Test (expected = NoSuchElementException .class )
94
- @ Ignore (MARIONETTE )
94
+ @ Ignore (value = MARIONETTE , reason = "https://bugzilla.mozilla.org/show_bug.cgi?id=1204504" )
95
95
public void testFindingASingleElementByEmptyIdShouldThrow () {
96
96
driver .get (pages .formPage );
97
97
driver .findElement (By .id ("" ));
98
98
}
99
99
100
100
@ Test
101
- @ Ignore (MARIONETTE )
101
+ @ Ignore (value = MARIONETTE , reason = "https://bugzilla.mozilla.org/show_bug.cgi?id=1204504" )
102
102
public void testFindingMultipleElementsByEmptyIdShouldReturnEmptyList () {
103
103
driver .get (pages .formPage );
104
104
List <WebElement > elements = driver .findElements (By .id ("" ));
@@ -157,29 +157,29 @@ public void testShouldNotBeAbleToLocateByNameMultipleElementsThatDoNotExist() {
157
157
}
158
158
159
159
@ Test (expected = NoSuchElementException .class )
160
- @ Ignore (MARIONETTE )
160
+ @ Ignore (value = MARIONETTE , reason = "https://bugzilla.mozilla.org/show_bug.cgi?id=1204504" )
161
161
public void testFindingASingleElementByEmptyNameShouldThrow () {
162
162
driver .get (pages .formPage );
163
163
driver .findElement (By .name ("" ));
164
164
}
165
165
166
166
@ Test
167
- @ Ignore (MARIONETTE )
167
+ @ Ignore (value = MARIONETTE , reason = "https://bugzilla.mozilla.org/show_bug.cgi?id=1204504" )
168
168
public void testFindingMultipleElementsByEmptyNameShouldReturnEmptyList () {
169
169
driver .get (pages .formPage );
170
170
List <WebElement > elements = driver .findElements (By .name ("" ));
171
171
assertThat (elements .size (), is (0 ));
172
172
}
173
173
174
174
@ Test (expected = NoSuchElementException .class )
175
- @ Ignore (MARIONETTE )
175
+ @ Ignore (value = MARIONETTE , reason = "https://bugzilla.mozilla.org/show_bug.cgi?id=1204504" )
176
176
public void testFindingASingleElementByNameWithSpaceShouldThrow () {
177
177
driver .get (pages .formPage );
178
178
driver .findElement (By .name ("nonexistent button" ));
179
179
}
180
180
181
181
@ Test
182
- @ Ignore (MARIONETTE )
182
+ @ Ignore (value = MARIONETTE , reason = "https://bugzilla.mozilla.org/show_bug.cgi?id=1204504" )
183
183
public void testFindingMultipleElementsByNameWithSpaceShouldReturnEmptyList () {
184
184
driver .get (pages .formPage );
185
185
List <WebElement > elements = driver .findElements (By .name ("nonexistent button" ));
@@ -218,14 +218,14 @@ public void testShouldNotBeAbleToLocateByTagNameMultipleElementsThatDoNotExist()
218
218
}
219
219
220
220
@ Test (expected = NoSuchElementException .class )
221
- @ Ignore (MARIONETTE )
221
+ @ Ignore (value = MARIONETTE , reason = "https://bugzilla.mozilla.org/show_bug.cgi?id=1204504" )
222
222
public void testFindingASingleElementByEmptyTagNameShouldThrow () {
223
223
driver .get (pages .formPage );
224
224
driver .findElement (By .tagName ("" ));
225
225
}
226
226
227
227
@ Test
228
- @ Ignore (MARIONETTE )
228
+ @ Ignore (value = MARIONETTE , reason = "https://bugzilla.mozilla.org/show_bug.cgi?id=1204504" )
229
229
public void testFindingMultipleElementsByEmptyTagNameShouldReturnEmptyList () {
230
230
driver .get (pages .formPage );
231
231
List <WebElement > elements = driver .findElements (By .tagName ("" ));
@@ -428,14 +428,14 @@ public void testShouldThrowAnExceptionWhenThereIsNoLinkToClick() {
428
428
driver .findElement (By .xpath ("//a[@id='Not here']" ));
429
429
}
430
430
431
- @ Ignore ({ MARIONETTE } )
431
+ @ Ignore (value = MARIONETTE , reason = "https://bugzilla.mozilla.org/show_bug.cgi?id=1204504" )
432
432
@ Test (expected = InvalidSelectorException .class )
433
433
public void testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInDriverFindElement () {
434
434
driver .get (pages .formPage );
435
435
driver .findElement (By .xpath ("this][isnot][valid" ));
436
436
}
437
437
438
- @ Ignore ({ MARIONETTE } )
438
+ @ Ignore (value = MARIONETTE , reason = "https://bugzilla.mozilla.org/show_bug.cgi?id=1204504" )
439
439
@ Test (expected = InvalidSelectorException .class )
440
440
public void testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInDriverFindElements () {
441
441
assumeFalse ("Ignoring xpath error test in IE6" , TestUtilities .isIe6 (driver ));
@@ -444,15 +444,15 @@ public void testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInval
444
444
driver .findElements (By .xpath ("this][isnot][valid" ));
445
445
}
446
446
447
- @ Ignore ({ MARIONETTE } )
447
+ @ Ignore (value = MARIONETTE , reason = "https://bugzilla.mozilla.org/show_bug.cgi?id=1204504" )
448
448
@ Test (expected = InvalidSelectorException .class )
449
449
public void testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInElementFindElement () {
450
450
driver .get (pages .formPage );
451
451
WebElement body = driver .findElement (By .tagName ("body" ));
452
452
body .findElement (By .xpath ("this][isnot][valid" ));
453
453
}
454
454
455
- @ Ignore ({ MARIONETTE } )
455
+ @ Ignore (value = MARIONETTE , reason = "https://bugzilla.mozilla.org/show_bug.cgi?id=1204504" )
456
456
@ Test (expected = InvalidSelectorException .class )
457
457
public void testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInElementFindElements () {
458
458
assumeFalse ("Ignoring xpath error test in IE6" , TestUtilities .isIe6 (driver ));
@@ -462,14 +462,14 @@ public void testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInval
462
462
body .findElements (By .xpath ("this][isnot][valid" ));
463
463
}
464
464
465
- @ Ignore ({ MARIONETTE } )
465
+ @ Ignore (value = MARIONETTE , reason = "https://bugzilla.mozilla.org/show_bug.cgi?id=1204504" )
466
466
@ Test (expected = InvalidSelectorException .class )
467
467
public void testShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInDriverFindElement () {
468
468
driver .get (pages .formPage );
469
469
driver .findElement (By .xpath ("count(//input)" ));
470
470
}
471
471
472
- @ Ignore ({ MARIONETTE } )
472
+ @ Ignore (value = MARIONETTE , reason = "https://bugzilla.mozilla.org/show_bug.cgi?id=1204504" )
473
473
@ Test (expected = InvalidSelectorException .class )
474
474
public void testShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInDriverFindElements () {
475
475
assumeFalse ("Ignoring xpath error test in IE6" , TestUtilities .isIe6 (driver ));
@@ -478,7 +478,7 @@ public void testShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInDr
478
478
driver .findElements (By .xpath ("count(//input)" ));
479
479
}
480
480
481
- @ Ignore ({ MARIONETTE } )
481
+ @ Ignore (value = MARIONETTE , reason = "https://bugzilla.mozilla.org/show_bug.cgi?id=1204504" )
482
482
@ Test (expected = InvalidSelectorException .class )
483
483
public void testShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInElementFindElement () {
484
484
driver .get (pages .formPage );
@@ -487,7 +487,7 @@ public void testShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInEl
487
487
body .findElement (By .xpath ("count(//input)" ));
488
488
}
489
489
490
- @ Ignore ({ MARIONETTE } )
490
+ @ Ignore (value = MARIONETTE , reason = "https://bugzilla.mozilla.org/show_bug.cgi?id=1204504" )
491
491
@ Test (expected = InvalidSelectorException .class )
492
492
public void testShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInElementFindElements () {
493
493
assumeFalse ("Ignoring xpath error test in IE6" , TestUtilities .isIe6 (driver ));
0 commit comments