Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 264 Bytes

File metadata and controls

7 lines (6 loc) · 264 Bytes
  • Sample using javascript
 WebElement myElement = driver.findElement(By.id("myDiv"));
 WebElement parent = (WebElement) ((JavascriptExecutor) driver).executeScript(
                                    "return arguments[0].parentNode;", myElement);