我有一个WWW::Mechanize::Firefox
在 windows 7 32bit 上使用草莓 perl 的 perl 程序。
它适用于命令C:\>perl testcase.pl
。当我用它编译它时,C:\>pp -o testcase.exe testcase.pl
它编译时没有错误。
当我运行它时,testcase.exe
它给了我错误:
Failed to connect to , Can't locate object method "setup" via package "MozRepl::Client" at MozRepl.pm line 224
我使用的代码testcase.pl
是:
#!perl
use MozRepl;
use WWW::Mechanize::Firefox;
use warnings;
system('start firefox');
sleep(5);
$mech = WWW::Mechanize::Firefox->new;
另请注意,没有WWW::Mechanize::Firefox
和的程序MozRepl
可以正常工作。问题显然已经缩小到PAR::Packer
不喜欢MozRepl
,知道它可能是什么吗?