我已经关注一个元素的 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>