es este:
http://foro.elhacker.net/index.php/topic,109394.0.html
Lo que quiero conseguir es clicar un boton de un formulario y en el post antes nombrado supe como hacerlo:
Código:
Webbrowser1.Document.All("nombre del boton").Click
Lei tambien de mandar el form directamente con este code
Código:
webbrowser.document.forms("nombre del form").submit
Pero he aqui mi problema, en el siguiente código tanto el boton como el form carece de nombre:
Código:
<form action="robbery.php" method="POST"><input type="hidden" name=uja value="21870"><table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr><td align="center" valign="top"><img src="img/race2.gif" alt="Werewolves" ><p align="center" valign="center"></td>
<td width="10"> </td><td valign="top">
<table cellpadding="2" cellspacing="2" border="0" width="100%">
<tr><td class="tdh" colspan="2" align="center">Werewolf joderca</td></tr>
<tr><td class="tdn" colspan="2"><span class="fontsmall2">Has been transformed by an Elder
</span></td></tr>
<tr><td class="tdn">Entire haul:</td><td class="tdn">1.899 kg meat</td></tr>
<tr><td colspan="2"> </td></tr>
<tr><td class="tdh" colspan="2" align="center">Characterisation</td></tr>
<tr><td class="tdn" colspan="2" style="text-align:justify"><p align="center">-- non avaliable --</p></td></tr>
<tr><td colspan="2" align="center"> </td></tr>
<tr><td colspan="2" class="tdh" align="center">The characteristics of joderca</td></tr>
<tr><td class="tdn">Level:</td><td class="tdn">3</td></tr><tr><td class="tdn">Force:</td><td class="tdn"><img src="img/b1.gif" alt="" ><img src="img/b2.gif" alt="" height="12" width="200"><img src="img/b3.gif" alt="" > <span class="fontsmall">(14)</span></td></tr><tr><td class="tdn">Defense:</td><td class="tdn"><img src="img/b1.gif" alt="" ><img src="img/b2.gif" alt="" height="12" width="185.714285714"><img src="img/b3.gif" alt="" > <span class="fontsmall">(13)</span></td></tr><tr><td class="tdn">Dexterity:</td><td class="tdn"><img src="img/b1.gif" alt="" ><img src="img/b2.gif" alt="" height="12" width="200"><img src="img/b3.gif" alt="" > <span class="fontsmall">(14)</span></td></tr><tr><td class="tdn">Endurance:</td><td class="tdn"><img src="img/b1.gif" alt="" ><img src="img/b2.gif" alt="" height="12" width="171.428571429"><img src="img/b3.gif" alt="" > <span class="fontsmall">(12)</span></td></tr><tr><td class="tdn">Charisma:</td><td class="tdn"><img src="img/b1.gif" alt="" ><img src="img/b2.gif" alt="" height="12" width="185.714285714"><img src="img/b3.gif" alt="" > <span class="fontsmall">(13)</span></td></tr><tr><td class="tdn">Experience:</td><td class="tdn"><img src="img/b1.gif" alt="" ><img src="img/b2.gif" alt="" height="12" width="164"><img src="img/b4.gif" alt="" height="12" width="36"><img src="img/b5.gif" alt="" ><span class="fontsmall"> (37 / 45)</span></td></tr><tr><td align="center" colspan="2"><br><input type="submit" class=input value="Attack"></td></tr></table>
</td></tr></table>
</form>
Con otro tipo de formulario lo que hize es copiar el codigo, asignarle nombre al boton y colgarlo en mi propio servidor. Asi conseguí clicar el boton. Pero dicha solucion no funciona con este codigo ya la pagina que es generada al azar.
Tampoco si no fuera mucho pedir y si disponeis de un manual extenso de webbrowser a mano, facilitarlo para evitar futuras dudas.