Вы всегда можете дождаться его появления.
Для Selenium :: Chrome написано следующее, но он демонстрирует переносимый принцип.
use constant POLL_INTERVAL => 0.1;
use Time::HiRes qw( sleep time );
sub wait_for {
my ($xpath, $max_wait) = @_;
my $wait_until = time() + $max_wait;
while (1) {
if ( my $nodes = nf_find_elements($xpath) ) {
return wantarray ? @$nodes : $nodes->[0];
}
my $time_left = $wait_until - time();
return () if $time_left <= 0;
sleep(min($time_left, POLL_INTERVAL));
}
}
# Version of `find_elements` that doesn't die (non-fatal) when the element isn't found.
sub nf_find_elements {
my $nodes;
if (!eval {
$nodes = $web_driver->find_elements(@_);
return 1; # No exception.
}) {
return undef if $@ =~ /Unable to locate element|An element could not be located on the page using the given search parameters/;
die($@);
}
return wantarray ? @$nodes : $nodes;
}
Пример использования:
my $node = wait_for('//some/path', 4.0) # Wait up to 4s
or die("Login was unsuccessful.\n");
Time :: HiRes sleep
не прерывается сигналами, поэтому я использовал следующее, чтобы сделать мой обработчик Ctrl-C отзывчивым:
use Time::HiRes qw( );
use constant SLEEP_INTERVAL => 0.1;
# Hi-res sleep that gives signal handlers a chance to run.
use subs qw( sleep );
sub sleep {
if (!$_[0]) {
Time::HiRes::sleep(SLEEP_INTERVAL) while 1;
return; # Never reached.
}
my $sleep_until = time() + $_[0];
while (1) {
my $time_left = $sleep_until - Time::HiRes::time();
return if $time_left <= 0;
Time::HiRes::sleep(min($time_left, SLEEP_INTERVAL));
}
}
Убедитесь, чтоне импортировать sleep
из Time :: HiRes.