|
代码如下:<tr>
<td>click</td>
<td>xpath=(//a[contains(text(),'处理')])[2]</td>
<td></td>
</tr>
<tr>
<td>waitForPopUp</td>
<td></td>
<td>30000</td>
</tr>
<tr>
<td>clickAt</td>
<td>xpath=html/body/div[2]/div[2]/div/div[1]/div/div[4]/table/tbody/tr[1]/td[1]</td>
<td></td>
我希望的操作是点击“处理”按钮后进入一个处理界面,然后鼠标选取xpath=html/body/div[2]/div[2]/div/div[1]/div/div[4]/table/tbody/tr[1]/td[1]的地方然后再进行下一步操作。但是在运行脚本的时候每到这里都是提示
- [error] Element xpath=html/body/div[2]/div[2]/div/div[1]/div/div[4]/table/tbody/tr[1]/td[1] not found
- [error] current test case not found
- [info] Test suite completed: 1 played, 1 failed
然后脚本停止,这时如果手动点击运行失败的这个脚本马上就成功。不是延迟之类的问题,我试过在这个操作前加入了pause 10000。依然运行脚本时在这里会失败,马上失败马上手动再运行一次就依然是成功的,期待高手解答
|
|