Selenium:验证表的内容
我有一个简单的问题。
有:
<td class="xxx">200</td>
<td class="xxx">200</td>
<td class="yyyy">100</td>
<td class="yyyy">100</td>
我的 html 中
确保“xxx”类的所有结果都是 200,“yyyy”类的所有结果都是 100 的最佳且非侵入性的方法是什么。
I have a simple problem.
I have:
<td class="xxx">200</td>
<td class="xxx">200</td>
<td class="yyyy">100</td>
<td class="yyyy">100</td>
in my html.
Whats the best and nonintrusive way to make sure all the results of class "xxx" is 200 and all the results of class "yyyy" is 100.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用:
基于 XSLT 的验证:
应用于此 XML 文档时(您的片段包装到顶部元素中,成为格式良好的 XML 文档) ):
产生:
应用于此 XML 文档时:
再次产生正确的结果:
说明:
了解<强><一href="http://www.w3.org/TR/xpath/#booleans" rel="nofollow">XPath 运算符
!=
。Use:
XSLT - based verification:
when applied on this XML document (your fragment wrapped into a top element to become a well-formed XML document):
produces:
When applied on this XML document:
again the correct result is produced:
Explanation:
Read about the XPath operator
!=
.