Skip to content

Commit 8594d5e

Browse files
committed
[java] Ignoring no shadow root test due to https://issues.chromium.org/issues/375892677
Related to #14631
1 parent 59aa1a0 commit 8594d5e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

java/test/org/openqa/selenium/NoSuchShadowRootTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,18 @@
1818
package org.openqa.selenium;
1919

2020
import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
21+
import static org.openqa.selenium.testing.drivers.Browser.CHROME;
22+
import static org.openqa.selenium.testing.drivers.Browser.EDGE;
2123

2224
import org.junit.jupiter.api.Test;
25+
import org.openqa.selenium.testing.Ignore;
2326
import org.openqa.selenium.testing.JupiterTestBase;
2427

2528
public class NoSuchShadowRootTest extends JupiterTestBase {
2629

2730
@Test
31+
@Ignore(value = CHROME, reason = "https://issues.chromium.org/issues/375892677")
32+
@Ignore(value = EDGE, reason = "https://issues.chromium.org/issues/375892677")
2833
public void getNoSuchShadowRoot() {
2934
driver.get(pages.shadowRootPage);
3035
WebElement nonExistentShadowRootElement = driver.findElement(By.id("noShadowRoot"));

0 commit comments

Comments
 (0)