On Tue, 16 Jul 2002 23:40:20 -0400
"David Gerler" <[EMAIL PROTECTED]> wrote:
: I am getting the following error from Perl builder:
: Can't call method "click" on an undefined value at next_attempt.pl line 52.
:
:
: BEGIN CODE________________________________________________________
: #!/usr/local/bin/perl
:
: use strict;
Hmmm... is this code really compiling under use strict?
: $form[3]->value( 'LOGIN', "$login" );
: $form[3]->value( 'PASSWORD', "$pass" );
:
: my $response = $ua->request( $form->click(Go) );
^^^^^
Should it be $form[3]?
-- fxn