本文介绍了WWW::Mechanize::Firefox 点击链接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有以下这行
$agent->follow_link( xpath => '//a[text() = "123456"]' );
我正在尝试单击在 <a href="alwaysdifferenthere">123456</a>
上面的代码没有点击链接.我做错了吗?
The code above doesn't click a link. I am doing this wrong?
推荐答案
use WWW::Mechanize::Firefox;
my $mech = WWW::Mechanize::Firefox->new();
...
$mech->follow_link( tag => 'a', text => '123456' );
这篇关于WWW::Mechanize::Firefox 点击链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!