- or download this
sub WaitforDone{
my $self = shift;
my $agent = $self->{agent};
...
sleep 1;
}
}
- or download this
sub Win32::IEAutomation::WaitforDoneTimeout {
my( $self, $timeout ) = @_;
...
}
return "nuclear explosion";
}
- or download this
sub Click{
my ($self, $nowait) = @_;
$self->{element}->click;
$self->{parent}->WaitforDone unless $nowait;
}