in reply to Re: Seeking assistance with WWW::Mechanize Form Submission
in thread Seeking assistance with WWW::Mechanize Form Submission
There doesn't appear to be a dump method - just dump-forms, dump-images, etc. If I set autocheck to 1 and let it exit it gives me a quite generic error:
Server closed connection without sending any data back
As for javascript, the only javascript on the page sets focus to the first text field. I've included it here for completeness:script type="text/javascript" function placeFocus() { if (document.forms.length > 0) { var field = document.forms[0]; for (i = 0; i < field.length; i++) { if ((field.elements[i].type == "text") || (field.elements[i].type == " +textarea")) { document.forms[0].elements[i].focus(); break; } } } } /script
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Seeking assistance with WWW::Mechanize Form Submission
by Anonymous Monk on Jan 15, 2013 at 01:38 UTC | |
|
Re^3: Seeking assistance with WWW::Mechanize Form Submission
by Anonymous Monk on Jan 15, 2013 at 01:37 UTC | |
by tspang (Initiate) on Jan 15, 2013 at 16:21 UTC | |
by Corion (Patriarch) on Jan 15, 2013 at 16:22 UTC |