Skip to content

Instantly share code, notes, and snippets.

@angiejones
Last active September 11, 2020 21:35
Show Gist options
  • Save angiejones/657a90563b9d80861087d162e4e17a05 to your computer and use it in GitHub Desktop.
Save angiejones/657a90563b9d80861087d162e4e17a05 to your computer and use it in GitHub Desktop.
Shadow Dom Elements with Selenium
WebElement shadowRoot = (WebElement)((JavascriptExecutor)driver)
.executeScript(
"return arguments[0].shadowRoot",
driver.findElement(By.id("component-id")));
shadowRoot.findElement(By.id("child-element")).getText();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment