diablo1024 has asked for the wisdom of the Perl Monks concerning the following question:
$login_url = url 'https://webbroker1.tdwaterhouse.com/TD/Waterhouse/ie +4x/logonForm.asp'; $ua = LWP::UserAgent->new; my $login_req = GET $login_url; my $login_res = $ua->request($login_req); my $tb = HTML::TreeBuilder->new; $tb->parse($login_res->content); my @forms = @{$tb->extract_links(qw(FORM))}; my $f = HTTP::Request::Form->new($forms[0][1], $login_url); $f->dump;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: trouble filling out HTML form
by Ovid (Cardinal) on Oct 20, 2003 at 21:57 UTC | |
by tachyon (Chancellor) on Oct 21, 2003 at 00:21 UTC | |
by diablo1024 (Initiate) on Oct 23, 2003 at 19:21 UTC |