Skip to content

Instantly share code, notes, and snippets.

@SarahElson
Created April 22, 2024 07:32
How to Handle Shadow Root in Selenium Java
@Test
public void testEditMenuShadowRootElement() {
getDriver().get("https://www.htmlelements.com/demos/menu/shadow-dom/index.htm");
final HomePage homePage = new HomePage();
assertEquals(homePage.getEditMenuText(), "Edit");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment