作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
WebElement body = browser.findElement(By.xpath("//body"));
body.findElement(By.xpath("")); // I want to get all child elements
// inside body, but nothing deeper.
<html>
<body>
<div>
</div>
<span>
<table>
</table>
</span>
</body>
</html>
div
和
span
.我无法控制这些文件,而且它们差别很大。
最佳答案
("*")
给出上下文节点的所有子元素。所以使用:
body.findElement(By.xpath("*"));
关于xpath - 得到所有直接的 child ,没有更深的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4610884/
我是一名优秀的程序员,十分优秀!