Selenium:验证表的内容

发布于 2024-12-11 06:26:59 字数 298 浏览 1 评论 0原文

我有一个简单的问题。

有:

   <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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花伊自在美 2024-12-18 06:26:59

使用

  not('200' != //td[@class = 'xxx'])
and
  not('100' != //td[@class = 'yyyy'])

基于 XSLT 的验证

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output method="text"/>

 <xsl:template match="/">
  <xsl:value-of select=
  "  not('200' != //td[@class = 'xxx'])
    and
      not('100' != //td[@class = 'yyyy'])
  "/>
 </xsl:template>
</xsl:stylesheet>

应用于此 XML 文档时(您的片段包装到顶部元素中,成为格式良好的 XML 文档) ):

<t>
   <td class="xxx">200</td>
   <td class="xxx">200</td>
   <td class="yyyy">100</td>
   <td class="yyyy">100</td>
</t>

产生:

true

应用于此 XML 文档时:

<t>
   <td class="xxx">200</td>
   <td class="xxx">200</td>
   <td class="yyyy">100</td>
   <td class="yyyy">101</td>
   <td class="yyyy">100</td>
</t>

再次产生正确的结果:

false

说明:

了解<强><一href="http://www.w3.org/TR/xpath/#booleans" rel="nofollow">XPath 运算符 !=

Use:

  not('200' != //td[@class = 'xxx'])
and
  not('100' != //td[@class = 'yyyy'])

XSLT - based verification:

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output method="text"/>

 <xsl:template match="/">
  <xsl:value-of select=
  "  not('200' != //td[@class = 'xxx'])
    and
      not('100' != //td[@class = 'yyyy'])
  "/>
 </xsl:template>
</xsl:stylesheet>

when applied on this XML document (your fragment wrapped into a top element to become a well-formed XML document):

<t>
   <td class="xxx">200</td>
   <td class="xxx">200</td>
   <td class="yyyy">100</td>
   <td class="yyyy">100</td>
</t>

produces:

true

When applied on this XML document:

<t>
   <td class="xxx">200</td>
   <td class="xxx">200</td>
   <td class="yyyy">100</td>
   <td class="yyyy">101</td>
   <td class="yyyy">100</td>
</t>

again the correct result is produced:

false

Explanation:

Read about the XPath operator !=.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文