Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 www-mechanize 模块来访问网站控件。一些 html 页面包含框架。我无法获取链接名称,也无法访问框架中的链接。请任何人提出正确的解决方案来解决此问题。
工作平台:Windows、Perl
提前致谢
据我所知, WWW::Mechanize 不会自动加载帧;你需要自己这样做。您可以通过以下方式获取框架的链接:
@frames = $mech->find_link( 'tag' => 'frame' );
然后$mech->get是每一个(如有必要,克隆你的机械对象)。
$mech->get