Created
April 22, 2024 07:29
-
-
Save SarahElson/e396eb1137020f276633766df8a57076 to your computer and use it in GitHub Desktop.
How to Handle Shadow Root in Selenium Java
This file contains hidden or 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
public SearchContext expandRootElement(final WebElement element) { | |
return (SearchContext) ((JavascriptExecutor) getDriver()).executeScript( | |
"return arguments[0].shadowRoot", element); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment