gebelo has asked for the wisdom of the Perl Monks concerning the following question:
This takes me to a new page with another form -- but this one has a Javascript "onClick" routine, and when I try various permutations of the following, it doesn't accept my input: This is the form code:$browser->get( $starting_url ); $browser->form_name("GS"); $browser->submit();
And these are two of the methods I've attempted to get the thing to go:<form name="gs" METHOD="post" action="" onSubmit="cntyzip()" > <table width=70% align="center"> <tr> <td align=center colspan=2> You must either choose a <b>County < +font color="#FF0000"> or </font></b> enter a <b>Zip Code +</b></td></tr> <tr><td> </td></tr> <tr> <td colspan="2"> <table width = 76% align="center"> <tr> <td width="16%" align=left><font size=2>County:</font></td +> <td width="30%" align=left><font size=2> <select name="county"> <option value="">Choose a county</option> <option value="01ATLANTIC">ATLANTIC</option>
I've tried this in both regular mech and the Win32::ie version, but no luck... Any advice?$browser->form_name( "gs" ); $browser->set_fields( county => '01ATLANTIC' ); $browser->submit(); # $browser->form_name("gs"); # $browser->field( "county", "01ATLANTIC" ); # $browser->cntyzip();
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Submitting form data to Javascript form
by Kanji (Parson) on Mar 25, 2005 at 19:52 UTC | |
by gebelo (Initiate) on Mar 28, 2005 at 21:09 UTC |