File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
java/test/org/openqa/selenium Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 1818package org .openqa .selenium ;
1919
2020import 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
2224import org .junit .jupiter .api .Test ;
25+ import org .openqa .selenium .testing .Ignore ;
2326import org .openqa .selenium .testing .JupiterTestBase ;
2427
2528public 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" ));
You can’t perform that action at this time.
0 commit comments