I've just encoutered a very weird behavior, which I really couldnt explain:
do {
my $qry = $self->getHTMLQuery(undef,$mech->content());
next if (!defined($qry));
push(@prods,map { 'http://www.XXXXYYYX.com'.$_->attr('href')}
$qry->query('div.prodInfo div.prodInfoBox a.prodLink.GridItemLink'));
$qry->delete();
$TEST++;
last if ($TEST >= 10);
} while(eval {$mech->follow_link(class => 'jump next')});
print "WHILE ENDED\n";
The code above never prints "WHILE ENDED" even though it does seem to go out of the while loop while $TEST >= 10.
But the code above, does seems to print "WHILE ENDED":
do {
my $qry = $self->getHTMLQuery(undef,$mech->content());
next if (!defined($qry));
push(@prods,map { 'http://www.XXXXYYYX.com'.$_->attr('href')}
$qry->query('div.prodInfo div.prodInfoBox a.prodLink.GridItemLink'));
$qry->delete();
$TEST++;
} while(eval {$mech->follow_link(class => 'jump next')} && $TEST <= 10);
print "WHILE ENDED\n";
In both Tests, initial value of $TEST is 0.
Is the behavior of 'last' in do..while is different than in for, while {...} ?
Thanks,