Perl-WWW::机械化::Firefox-在新选项卡中打开链接



使用$mech->find_all_links_dom方法,我在页面上获得一个链接数组。对于数组中的每个$link,我想在一个新的选项卡中打开它。我不知道如何做到这一点,建议会很好。

这是一种工作方式:

#!/usr/bin/perl -w
use strict;
use WWW::Mechanize::Firefox;
my @array = <DATA>;
foreach (@array)
{
    my $mech = WWW::Mechanize::Firefox->new(    
                        activate => 1,  # bring the tab to the foreground
                        autoclose => 0  # to prevent autoclosing of the Tab
                        ); 
    $mech->get($_);
}
__DATA__
www.google.com
www.yahoo.com

AFAIK,WWW::Mechanize::Firefox在给定对象($mech)的同一选项卡中打开页面。因此,我运行一个foreach loop,并为每个链接创建一个新对象。这可能不是最好的方法,但这是有效的。

相关内容

  • 没有找到相关文章

最新更新