uni_j has asked for the wisdom of the Perl Monks concerning the following question:
use WWW::Mechanize; use HTML::TokeParser; my $mech = WWW::Mechanize->new(cookie_jar => undef); $url="http://www.utsc.utoronto.ca/~registrar/scheduling/timetable"; $prefix = "ANT"; $mech->get($url); $mech->submit_form( fields =>{ sess => "summer", course => $prefix, }, ); print $mech->content();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: The age old JavaScript WWW::Mech scenario
by Corion (Patriarch) on Apr 29, 2009 at 17:40 UTC | |
|
Re: The age old JavaScript WWW::Mech scenario
by perrin (Chancellor) on Apr 29, 2009 at 18:41 UTC | |
|
Re: The age old JavaScript WWW::Mech scenario
by whakka (Hermit) on Apr 29, 2009 at 21:44 UTC | |
by trwww (Priest) on Apr 30, 2009 at 00:39 UTC | |
by whakka (Hermit) on Apr 30, 2009 at 01:29 UTC | |
|
Re: The age old JavaScript WWW::Mech scenario
by imrags (Monk) on Apr 30, 2009 at 08:04 UTC |