我跟踪了一个元素的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>
答案 0 :(得分:0)
您可以使用命令verifyTextPresent接受模式以匹配页面文本。
或者,如果您只提到了标记,则可以使用verifyText(“// td”,“要验证的消息”)