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