Skip to content

Commit b398f8f

Browse files
committed
Mark passing tests as passing for Edge
1 parent 728c746 commit b398f8f

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

java/test/org/openqa/selenium/ElementDomAttributeTest.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ public void testShouldReturnNullWhenGettingSrcAttributeOfInvalidImgTag() {
5555
}
5656

5757
@Test
58-
@NotYetImplemented(EDGE)
5958
public void testShouldReturnTheActualValueWhenGettingSrcAttributeOfAValidImgTag() {
6059
driver.get(pages.simpleTestPage);
6160
WebElement img = driver.findElement(By.id("validImgTag"));
@@ -64,7 +63,6 @@ public void testShouldReturnTheActualValueWhenGettingSrcAttributeOfAValidImgTag(
6463
}
6564

6665
@Test
67-
@NotYetImplemented(EDGE)
6866
public void testShouldReturnTheActualValueWhenGettingHrefAttributeOfAValidAnchorTag() {
6967
driver.get(pages.simpleTestPage);
7068
WebElement img = driver.findElement(By.id("validAnchorTag"));
@@ -92,7 +90,6 @@ public void testShouldReturnTheValueOfTheDisabledAttributeAsNullIfNotSet() {
9290
}
9391

9492
@Test
95-
@NotYetImplemented(EDGE)
9693
public void testShouldNotReturnTheValueOfTheIndexAttributeIfItIsMissing() {
9794
driver.get(pages.formPage);
9895
WebElement multiSelect = driver.findElement(By.id("multi"));
@@ -180,15 +177,13 @@ public void testShouldReturnValueOfClassAttributeOfAnElement() {
180177
}
181178

182179
@Test
183-
@NotYetImplemented(EDGE)
184180
public void testShouldNotReturnTheContentsOfATextAreaAsItsValue() {
185181
driver.get(pages.formPage);
186182
String value = driver.findElement(By.id("withText")).getDomAttribute("value");
187183
assertThat(value).isNull();
188184
}
189185

190186
@Test
191-
@NotYetImplemented(EDGE)
192187
public void testShouldNotReturnInnerHtmlProperty() {
193188
driver.get(pages.simpleTestPage);
194189
String html = driver.findElement(By.id("wrappingtext")).getDomAttribute("innerHTML");
@@ -211,7 +206,6 @@ public void testShouldTreatReadonlyAsAValue() {
211206
}
212207

213208
@Test
214-
@NotYetImplemented(EDGE)
215209
public void testShouldNotReturnTextContentProperty() {
216210
driver.get(pages.simpleTestPage);
217211
WebElement element = driver.findElement(By.id("hiddenline"));
@@ -274,7 +268,6 @@ public void testgetDomAttributeDoesNotReturnAnObjectForSvgProperties() {
274268
}
275269

276270
@Test
277-
@NotYetImplemented(EDGE)
278271
public void testCanRetrieveTheCurrentValueOfATextFormFieldWithPresetText() {
279272
driver.get(pages.formPage);
280273
WebElement element = driver.findElement(By.id("inputWithText"));
@@ -284,7 +277,6 @@ public void testCanRetrieveTheCurrentValueOfATextFormFieldWithPresetText() {
284277
}
285278

286279
@Test
287-
@NotYetImplemented(EDGE)
288280
public void testShouldNotReturnTextOfATextArea() {
289281
driver.get(pages.formPage);
290282
WebElement element = driver.findElement(By.id("withText"));
@@ -360,7 +352,6 @@ public void shouldTreatContenteditableAsEnumeratedButNotBoolean() {
360352

361353
@Test
362354
@NotYetImplemented(IE)
363-
@NotYetImplemented(EDGE)
364355
@Ignore(LEGACY_FIREFOX_XPI)
365356
@NotYetImplemented(HTMLUNIT)
366357
@NotYetImplemented(SAFARI)

0 commit comments

Comments
 (0)