0

我已经关注一个元素的 XPath,并希望在 selenium 中使用 verifyText() 命令提取文本。

完整的 XPATH:html/body/table[2]/tbody/tr/td[3]/table/tbody/tr[4]/td/table/tbody/tr[2]/td/table/tbody/tr[2 ]/td

部分 html 如下所示,如何在 selenium 中使用 verifyText() 命令获取文本,即“当您...时会出现加载图标”?

此文本是动态的,可以更改。

<table width="730" cellspacing="0" cellpadding="0" border="0" align="center">
 <tbody>
  <tr>
  <tr>
   <td height="30" colspan="2">
   <strong>A Loading icon will appear when you click "Login" button.</strong>
 In case you do not see such icon, it would mean that you are not using a compatible browser
   </td>
  </tr>
  <form id="form1" method="post" autocomplete="off" action="/Login/Password"/>
  <tr>
  <tr>
  <tr>
  <tr>
 </tbody>
</table>
4

1 回答 1

0

您可以使用命令 verifyTextPresent 接受与页面文本匹配的模式。

或者如果只有你提到的标签,你可以使用 verifyText("//td","Message to verify")

于 2012-12-31T12:03:54.293 回答