From b398f8f3958d88d2f18e86c497cf5009c6de6dde Mon Sep 17 00:00:00 2001 From: Simon Mavi Stewart Date: Tue, 28 Sep 2021 14:38:02 +0100 Subject: [PATCH] Mark passing tests as passing for Edge --- .../org/openqa/selenium/ElementDomAttributeTest.java | 9 --------- 1 file changed, 9 deletions(-) diff --git a/java/test/org/openqa/selenium/ElementDomAttributeTest.java b/java/test/org/openqa/selenium/ElementDomAttributeTest.java index 0951b33d771bc..2c8a1955ad37d 100644 --- a/java/test/org/openqa/selenium/ElementDomAttributeTest.java +++ b/java/test/org/openqa/selenium/ElementDomAttributeTest.java @@ -55,7 +55,6 @@ public void testShouldReturnNullWhenGettingSrcAttributeOfInvalidImgTag() { } @Test - @NotYetImplemented(EDGE) public void testShouldReturnTheActualValueWhenGettingSrcAttributeOfAValidImgTag() { driver.get(pages.simpleTestPage); WebElement img = driver.findElement(By.id("validImgTag")); @@ -64,7 +63,6 @@ public void testShouldReturnTheActualValueWhenGettingSrcAttributeOfAValidImgTag( } @Test - @NotYetImplemented(EDGE) public void testShouldReturnTheActualValueWhenGettingHrefAttributeOfAValidAnchorTag() { driver.get(pages.simpleTestPage); WebElement img = driver.findElement(By.id("validAnchorTag")); @@ -92,7 +90,6 @@ public void testShouldReturnTheValueOfTheDisabledAttributeAsNullIfNotSet() { } @Test - @NotYetImplemented(EDGE) public void testShouldNotReturnTheValueOfTheIndexAttributeIfItIsMissing() { driver.get(pages.formPage); WebElement multiSelect = driver.findElement(By.id("multi")); @@ -180,7 +177,6 @@ public void testShouldReturnValueOfClassAttributeOfAnElement() { } @Test - @NotYetImplemented(EDGE) public void testShouldNotReturnTheContentsOfATextAreaAsItsValue() { driver.get(pages.formPage); String value = driver.findElement(By.id("withText")).getDomAttribute("value"); @@ -188,7 +184,6 @@ public void testShouldNotReturnTheContentsOfATextAreaAsItsValue() { } @Test - @NotYetImplemented(EDGE) public void testShouldNotReturnInnerHtmlProperty() { driver.get(pages.simpleTestPage); String html = driver.findElement(By.id("wrappingtext")).getDomAttribute("innerHTML"); @@ -211,7 +206,6 @@ public void testShouldTreatReadonlyAsAValue() { } @Test - @NotYetImplemented(EDGE) public void testShouldNotReturnTextContentProperty() { driver.get(pages.simpleTestPage); WebElement element = driver.findElement(By.id("hiddenline")); @@ -274,7 +268,6 @@ public void testgetDomAttributeDoesNotReturnAnObjectForSvgProperties() { } @Test - @NotYetImplemented(EDGE) public void testCanRetrieveTheCurrentValueOfATextFormFieldWithPresetText() { driver.get(pages.formPage); WebElement element = driver.findElement(By.id("inputWithText")); @@ -284,7 +277,6 @@ public void testCanRetrieveTheCurrentValueOfATextFormFieldWithPresetText() { } @Test - @NotYetImplemented(EDGE) public void testShouldNotReturnTextOfATextArea() { driver.get(pages.formPage); WebElement element = driver.findElement(By.id("withText")); @@ -360,7 +352,6 @@ public void shouldTreatContenteditableAsEnumeratedButNotBoolean() { @Test @NotYetImplemented(IE) - @NotYetImplemented(EDGE) @Ignore(LEGACY_FIREFOX_XPI) @NotYetImplemented(HTMLUNIT) @NotYetImplemented(SAFARI)