Win32-IE-Mechanize - Can't login to site

Posted on Tue Feb 6 18:37:18 2007 by adig
Can't login to site
Hi, I'm using version 0.009 and IE-7 and trying to login to the following site: https://hb2.bankleumi.co.il/TRADE/bllUsers/login_secured/Login0.asp I think that the problem is with the forms: It says that the number of forms is 0 even though there is a form name "form2". I'm using the following code:
use strict; use warnings; use Win32::IE::Mechanize; my $url = "https://hb2.bankleumi.co.il/TRADE/bllUsers/login_secured/Login0.asp"; my $ie = Win32::IE::Mechanize->new( visible => 1 ); $ie->get( $url ); my @forms = $ie->forms(); print scalar @forms; exit;
The output of this code is: 0. 1. Did anyone used this module with this site ? 2. Did anyone see this kind of problem ? 3. Is this module support IE ver 7 ? Thanks for your help adi
Direct Responses: 4267 | Write a response