试试这个:
(Java)
List<WebElement> childs = rootWebElement.findElements(By.xpath(".//*"));
(C#)
IReadOnlyList<IWebElement> childs = rootWebElement.FindElements(By.XPath(".//*"));
试试这个吧
List<WebElement> allDescendantsChilds = rootWebElement.findElements(By.xpath("//tr[@class='parent']//*"));
上面的内容将为您提供父tr的所有子元素(不仅仅是直接子元素)
试试这个:
List<WebElement> childs = rootWebElement.findElements(By.tagName(".//*"));