Ich verwende Selenium IDE für ein Google-Such-Szenario.
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
Was ich bis jetzt getan habe, ist
<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>
Was ich nicht tun kann, ist: Klicken Sie mit der rechten Maustaste auf den Link und öffnen Sie ihn in einem neuen Fenster.
Kann mir jemand sagen, was zu tun ist?