0
如何記錄在應用程序中的自動提示框通過硒IDE微量元素硒IDE
如何記錄在應用程序中的自動提示框通過硒IDE微量元素硒IDE
您可能需要使用mouseDownAt,mouseUpAt和waitForElementPresent的組合取得了一些成功。
例如
mouseDownAt,id=autoSuggestInput,5,5
mouseUpAt,id=autoSuggestInput,5,5
waitForElementPresent, css=.autoSuggestLink
你能提供一個鏈接到汽車的演示頁面腳本建議你使用
我一直在使用創建了一個演示腳本「http://jquery.bassistance.de/」基地網址。所以請檢查以下腳本。
<tr>
<td>open</td>
<td>/autocomplete/demo/</td>
<td></td>
</tr>
<tr>
<td>waitForText</td>
<td>id=suggest1</td>
<td></td>
</tr>
<tr>
<td>typeKeys</td>
<td>id=suggest1</td>
<td>Ad</td>
</tr>
<tr>
<td>waitForText</td>
<td>css=li.ac_even.ac_over</td>
<td>Ada</td>
</tr>
<tr>
<td>assertText</td>
<td>xpath=/x:html/x:body/x:div[2]/x:ul/x:li[1]</td>
<td>Ada</td>
</tr>
<tr>
<td>assertText</td>
<td>xpath=/x:html/x:body/x:div[2]/x:ul/x:li[2]</td>
<td>Adamsville</td>
</tr>