如何获取 WebElement 的父级
我试过了
private WebElement getParent(final WebElement webElement) {
return webElement.findElement(By.xpath(".."));
}
但我得到:
org.openqa.selenium.InvalidSelectorException: The given selector ..无效或不会导致 WebElement。发生以下错误: 无效选择器错误: xpath 表达式 “..” 的结果是: [对象 XrayWrapper [对象 HTMLDocument]]。它应该是一个元素。命令持续时间或超时:10 毫秒 有关此错误的文档,
有没有办法获取当前元素的父元素?谢谢