venkatesan_G02 has asked for the wisdom of the Perl Monks concerning the following question:

Hi,

I am accesing a web site using www::mechanize module. I am receiving the following error:

No clickable input with name tab$_ctl5$btCheckProv at C:/Perl/site/lib +/WWW/Mechanize.pm line 1643

My Program:

#Select the form named form1 as the form in which i am going to wo +rk further $mechanize->form_name('form1'); #Click on the EO lookup button $mechanize->click('tab$_ctl5$btCheckProv');

Also, the button exists in the actual HTML page.

<input type="submit" name="tab$_ctl5$btCheckProv" value="EO Lookup" id +="tab__ctl5_btCheckProv" class="buttonSM" /><br />

I upgraded my Mechanize module but still no use.

Please advice


Thanks in advance!!!

Replies are listed 'Best First'.
Re: WWW::Mechanize error
by redgreen (Priest) on Oct 15, 2009 at 15:56 UTC

    Can you mech-dump the form?

    Maybe there is more then one form on the page?