I was able to grab Win32-IEAutomation, and it will fill in the form for me. Unfortunately, I can't get it to submit the values! I think I've covered all my bases. Any other ideas, or is it just not gonna do it?
use Win32::IEAutomation; my $ie = Win32::IEAutomation->new( visible => 1, maximize => 1); $ie->gotoURL('http://app001.us1.darkfallonline.com/sf/fwd'); $ie->getTextBox('name:', "username")->SetValue('username'); $ie->getTextBox('name:', "password")->SetValue('password'); my @alllinks = $ie->getAllLinks(); foreach $l (@alllinks) { $l->Click(); } my @allimages = $ie->getAllImages; foreach $i (@allimages) { $i->Click(); } my @alltables = $ie->getAllTables; foreach $t (@alltables) { $t->Click(); }
In reply to Re^2: Login to website (uses JS, I think)
by paxprobellum
in thread Login to website (uses JS, I think)
by paxprobellum
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |