Skip to content

Commit

Permalink
Mark passing tests as passing for Edge
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Sep 28, 2021
1 parent 728c746 commit b398f8f
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions java/test/org/openqa/selenium/ElementDomAttributeTest.java
Expand Up @@ -55,7 +55,6 @@ public void testShouldReturnNullWhenGettingSrcAttributeOfInvalidImgTag() {
}

@Test
@NotYetImplemented(EDGE)
public void testShouldReturnTheActualValueWhenGettingSrcAttributeOfAValidImgTag() {
driver.get(pages.simpleTestPage);
WebElement img = driver.findElement(By.id("validImgTag"));
Expand All @@ -64,7 +63,6 @@ public void testShouldReturnTheActualValueWhenGettingSrcAttributeOfAValidImgTag(
}

@Test
@NotYetImplemented(EDGE)
public void testShouldReturnTheActualValueWhenGettingHrefAttributeOfAValidAnchorTag() {
driver.get(pages.simpleTestPage);
WebElement img = driver.findElement(By.id("validAnchorTag"));
Expand Down Expand Up @@ -92,7 +90,6 @@ public void testShouldReturnTheValueOfTheDisabledAttributeAsNullIfNotSet() {
}

@Test
@NotYetImplemented(EDGE)
public void testShouldNotReturnTheValueOfTheIndexAttributeIfItIsMissing() {
driver.get(pages.formPage);
WebElement multiSelect = driver.findElement(By.id("multi"));
Expand Down Expand Up @@ -180,15 +177,13 @@ public void testShouldReturnValueOfClassAttributeOfAnElement() {
}

@Test
@NotYetImplemented(EDGE)
public void testShouldNotReturnTheContentsOfATextAreaAsItsValue() {
driver.get(pages.formPage);
String value = driver.findElement(By.id("withText")).getDomAttribute("value");
assertThat(value).isNull();
}

@Test
@NotYetImplemented(EDGE)
public void testShouldNotReturnInnerHtmlProperty() {
driver.get(pages.simpleTestPage);
String html = driver.findElement(By.id("wrappingtext")).getDomAttribute("innerHTML");
Expand All @@ -211,7 +206,6 @@ public void testShouldTreatReadonlyAsAValue() {
}

@Test
@NotYetImplemented(EDGE)
public void testShouldNotReturnTextContentProperty() {
driver.get(pages.simpleTestPage);
WebElement element = driver.findElement(By.id("hiddenline"));
Expand Down Expand Up @@ -274,7 +268,6 @@ public void testgetDomAttributeDoesNotReturnAnObjectForSvgProperties() {
}

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

@Test
@NotYetImplemented(EDGE)
public void testShouldNotReturnTextOfATextArea() {
driver.get(pages.formPage);
WebElement element = driver.findElement(By.id("withText"));
Expand Down Expand Up @@ -360,7 +352,6 @@ public void shouldTreatContenteditableAsEnumeratedButNotBoolean() {

@Test
@NotYetImplemented(IE)
@NotYetImplemented(EDGE)
@Ignore(LEGACY_FIREFOX_XPI)
@NotYetImplemented(HTMLUNIT)
@NotYetImplemented(SAFARI)
Expand Down

0 comments on commit b398f8f

Please sign in to comment.