|
Hi Jochen,
First of all, could you try 0.009_17 from CPAN?
Second, there should be no need to call _wait_while_busy()!
I can't tell how you filled @fields, but I would write it as:
my @fields = $ie->current_form->inputs;
for my $field ( @fields ) {
my $val = $field->value;
...
}
HTH,
-- Abe.
|