2


我正在尝试在网页的项目内容部门中获取信息,我希望我的脚本等待并阅读网页中出现的任何新项目内容部门。有什么建议么?

use WWW::Mechanize::Firefox;

my $mech = WWW::Mechanize::Firefox->new();
$mech->get('https://openbook.etoro.com/Dellos/overview/');
my @text = $mech->selector('.item-content');

for my $p (0..$#text) {
    my $normal=$text[$p]->{innerHTML};
    print $normal;
}
exit;
4

1 回答 1

0

这是一个非常简单的实现。在使用它之前,请遵循@ThisSuitIsBlackNot 的建议,以确保可以这样做。

use WWW::Mechanize::Firefox;

my $mech = WWW::Mechanize::Firefox->new();
my %seen;
while (1){
  $mech->get('https://openbook.etoro.com/Dellos/overview/');
  my @text = $mech->selector('.item-content');
  for my $p (0..$#text) {
    next if $seen{$p};
    my $normal=$text[$p]->{innerHTML};
    print $normal;
    $seen{$p} = 1;
  }
  sleep 30;
}
exit;
于 2013-11-21T11:37:36.590 回答