3

我正在尝试关注 Perl 中的链接。我的初始代码:

use WWW::Mechanize::Firefox;
use Crypt::SSLeay;
use HTML::TagParser;
use URI::Fetch;
$ENV{PERL_LWP_SSL_VERIFY_HOSTNAME}=0; #not verifying certificate
my $url = 'https://';
$url = $url.@ARGV[0]; 

my $mech = WWW::Mechanize::Firefox->new;
$mech->get($url);

$mech->follow_link(tag => 'a', text => '<span class=\"normalNode\">VSCs</span>');
$mech->reload();

我在这里发现标签文本选项以这种方式工作,但出现错误MozRepl::RemoteObject: SyntaxError: The expression is not a legal expression。我试图转义文本中的一些字符,但错误仍然相同。然后我改变了我的代码添加:

my @list = $mech->find_all_links();
my $found = 0;
my $i=0;
while($i<=$#list && $found == 0){
    print @list[$i]->url()."\n";
    if(@list[$i]->text() =~ /VSCs/){
    print @list[$i]->text()."\n";
    my $follow =@list[$i]->url();
    $mech->follow_link( url => $follow);
}
    $i++;
}

但话又说回来了一个错误:没有找到匹配'//a [(@href =“https://...不是,请告诉我还有什么要补充的。谢谢大家的帮助。

这是我要关注的链接的部分:

<li id="1" class="liClosed"><span class="bullet clickable">&#160;</span><b><a href="/centcfg/vsc_list.asp?entity=allvsc&amp;selector=All"><span class="normalNode">VSCs</span></a></b>
      <ul id="1.l1">
        <li id="i1.i1" class="liBullet"><span class="bullet">&#160;</span><b><a href="/centcfg/vsc_edit.asp?entity=vsc&amp;selector=1"><span class="normalNode">First</span></a></b></li>
        <li id="i1.i2" class="liBullet"><span class="bullet">&#160;</span><b><a href="/centcfg/vsc_edit.asp?entity=vsc&amp;selector=2"><span class="normalNode">Second</span></a></b></li>
        <li id="i1.i3" class="liBullet"><span class="bullet">&#160;</span><b><a href="/centcfg/vsc_edit.asp?entity=vsc&amp;selector=3"><span class="normalNode">Third</span></a></b></li>
        <li id="i1.i4" class="liBullet"><span class="bullet">&#160;</span><b><a href="/centcfg/vsc_edit.asp?entity=vsc&amp;selector=4"><span class="normalNode">Fourth</span></a></b></li>
        <li id="i1.i5" class="liBullet"><span class="bullet">&#160;</span><b><a href="/centcfg/vsc_edit.asp?entity=vsc&amp;selector=5"><span class="normalNode">None</span></a></b></li>
</ul>

我在 Windows 7 中工作,MozRepl 是 1.1 版,我使用的是 64 位的 Strawberry perl 5.16.2.1

4

2 回答 2

2

在使用给定的代码四处寻找之后,我能够使 W::M::F 以下列方式跟随链接:

use WWW::Mechanize::Firefox;
use Crypt::SSLeay;
use HTML::TagParser;
use URI::Fetch;

...

$mech->follow_link(xpath => '//a[text() = "<span class=\"normalNode\">VSCs</span>"]');
$mech->reload();

注意xpath给出的参数而不是text.

我没有仔细研究 W::M::F 源,但在后台它尝试将给定text参数转换为 XPath 字符串,并且如果text包含 XML/HTML 标记的数量,这是你的情况,它可能会驱动他疯了。

于 2012-12-20T16:24:23.407 回答
0

我建议您尝试:

$mech->follow_link( url_regex => qr/selector=All/ );
于 2012-12-19T22:32:13.110 回答