@@ -55,7 +55,6 @@ public void testShouldReturnNullWhenGettingSrcAttributeOfInvalidImgTag() {
55
55
}
56
56
57
57
@ Test
58
- @ NotYetImplemented (EDGE )
59
58
public void testShouldReturnTheActualValueWhenGettingSrcAttributeOfAValidImgTag () {
60
59
driver .get (pages .simpleTestPage );
61
60
WebElement img = driver .findElement (By .id ("validImgTag" ));
@@ -64,7 +63,6 @@ public void testShouldReturnTheActualValueWhenGettingSrcAttributeOfAValidImgTag(
64
63
}
65
64
66
65
@ Test
67
- @ NotYetImplemented (EDGE )
68
66
public void testShouldReturnTheActualValueWhenGettingHrefAttributeOfAValidAnchorTag () {
69
67
driver .get (pages .simpleTestPage );
70
68
WebElement img = driver .findElement (By .id ("validAnchorTag" ));
@@ -92,7 +90,6 @@ public void testShouldReturnTheValueOfTheDisabledAttributeAsNullIfNotSet() {
92
90
}
93
91
94
92
@ Test
95
- @ NotYetImplemented (EDGE )
96
93
public void testShouldNotReturnTheValueOfTheIndexAttributeIfItIsMissing () {
97
94
driver .get (pages .formPage );
98
95
WebElement multiSelect = driver .findElement (By .id ("multi" ));
@@ -180,15 +177,13 @@ public void testShouldReturnValueOfClassAttributeOfAnElement() {
180
177
}
181
178
182
179
@ Test
183
- @ NotYetImplemented (EDGE )
184
180
public void testShouldNotReturnTheContentsOfATextAreaAsItsValue () {
185
181
driver .get (pages .formPage );
186
182
String value = driver .findElement (By .id ("withText" )).getDomAttribute ("value" );
187
183
assertThat (value ).isNull ();
188
184
}
189
185
190
186
@ Test
191
- @ NotYetImplemented (EDGE )
192
187
public void testShouldNotReturnInnerHtmlProperty () {
193
188
driver .get (pages .simpleTestPage );
194
189
String html = driver .findElement (By .id ("wrappingtext" )).getDomAttribute ("innerHTML" );
@@ -211,7 +206,6 @@ public void testShouldTreatReadonlyAsAValue() {
211
206
}
212
207
213
208
@ Test
214
- @ NotYetImplemented (EDGE )
215
209
public void testShouldNotReturnTextContentProperty () {
216
210
driver .get (pages .simpleTestPage );
217
211
WebElement element = driver .findElement (By .id ("hiddenline" ));
@@ -274,7 +268,6 @@ public void testgetDomAttributeDoesNotReturnAnObjectForSvgProperties() {
274
268
}
275
269
276
270
@ Test
277
- @ NotYetImplemented (EDGE )
278
271
public void testCanRetrieveTheCurrentValueOfATextFormFieldWithPresetText () {
279
272
driver .get (pages .formPage );
280
273
WebElement element = driver .findElement (By .id ("inputWithText" ));
@@ -284,7 +277,6 @@ public void testCanRetrieveTheCurrentValueOfATextFormFieldWithPresetText() {
284
277
}
285
278
286
279
@ Test
287
- @ NotYetImplemented (EDGE )
288
280
public void testShouldNotReturnTextOfATextArea () {
289
281
driver .get (pages .formPage );
290
282
WebElement element = driver .findElement (By .id ("withText" ));
@@ -360,7 +352,6 @@ public void shouldTreatContenteditableAsEnumeratedButNotBoolean() {
360
352
361
353
@ Test
362
354
@ NotYetImplemented (IE )
363
- @ NotYetImplemented (EDGE )
364
355
@ Ignore (LEGACY_FIREFOX_XPI )
365
356
@ NotYetImplemented (HTMLUNIT )
366
357
@ NotYetImplemented (SAFARI )
0 commit comments