Last active
September 11, 2020 21:35
-
-
Save angiejones/657a90563b9d80861087d162e4e17a05 to your computer and use it in GitHub Desktop.
Shadow Dom Elements with Selenium
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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