HI
I need to get the parent of an element but I'm running into some problems. So I fetch the child which is the correct one and then I want to retrieve the parent from it but it seems that it can't find any element. Any suggestions?
WebElement child = this.helper.getDriver().findElement(By.id("Books")); //correct child
System.out.println(child.getAttribute("name"));
List<WebElement> parents = child.findElements(By.xpath("..")); //can't find anything even with find element