我将 Selenium IDE 用于谷歌搜索场景。
1 open google
2 then type "india" and click on the search button
3 then go to any link and right clicking on that link
and open that link in new tab or window
到目前为止我所做的是
<tr>
<td>open</td>
<td>/</td>
<td></td>
</tr>
<tr>
<td>type</td>
<td>id=gbqfq</td>
<td>india</td>
</tr>
<tr>
<td>click</td>
<td>id=gbqfb</td>
<td></td>
</tr>
<tr>
<td>contextMenu</td>
<td>//*[@id='rso']/li[3]/div/h3/a</td>
<td> </td>
</tr>
我不能做的是: 右键单击链接,然后在新窗口中打开该链接。
任何人都可以请建议需要做什么。