我想單擊從另一個硒彈出彈出的彈出窗口上的按鈕。我沒有問題在第二彈出運行命令,即我可以搜索和選擇獎勵,但是當我嘗試點擊添加按鈕什麼也沒有發生。如果步驟記錄在IDE中,則顯示以下命令:無法點擊硒的IDE彈出按鈕
<tr>
<td>click</td>
<td>//button[@type='button']</td>
<td></td>
</tr>
<tr>
<td>click</td>
<td>id=ctl00_PlaceHolderMain_New_pickerComponents_ButtonAddToTableResults</td>
<td></td>
</tr>
但這不起作用。我也曾嘗試
<tr>
<td>click</td>
<td>xpath=//span[text()='Add']</td>
<td></td>
</tr>
這是HTML
<div class="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix">
<div class="ui-dialog-buttonset">
<button class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" type="button" role="button" aria-disabled="false">
**<span class="ui-button-text">Add</span>**
</button>
<button class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" type="button" role="button" aria-disabled="false">
<span class="ui-button-text">Cancel</span>
</button>
</div>
</div>
,但沒有喜悅。我不確定爲什麼我可以在此彈出框中使用其他命令,但無法單擊添加按鈕。有任何想法嗎?