Skip to content

Commit

Permalink
[java] remove non-applicable xml test
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Sep 24, 2022
1 parent 31190f8 commit 3fcc413
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions java/test/org/openqa/selenium/ElementFindingTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -429,17 +429,6 @@ public void testShouldBeAbleToFindElementByXPathWithNamespace() {
assertThat(element.getText()).isEqualTo("Test Chart");
}

@Test
@Ignore(IE)
@NotYetImplemented(SAFARI)
@NotYetImplemented(CHROME)
@NotYetImplemented(EDGE)
public void testShouldBeAbleToFindElementByXPathInXmlDocument() {
driver.get(pages.simpleXmlDocument);
WebElement element = driver.findElement(By.xpath("//foo"));
assertThat(element.getText()).isEqualTo("baz");
}

// By.xpath negative

@Test
Expand Down

0 comments on commit 3fcc413

Please sign in to comment.