我需要单独检查每个BugZilla错误,并选择“保存更改”按钮,因为之前的问题。由于存在超过8000个错误,因此无法手动执行此操作。我认为Perl模块WWW :: Bugzilla将通过连接到bugzilla API来完成此操作。
use strict;
use warnings;
use WWW:Bugzilla;
my $bz = WWW::Bugzilla->new( server => 'http://be-qa-01/',
email => 'test.email@test.com',
password => 'pass'
bug_number => 8333 );
# show me the chosen component
my $component = $bz->component;
我不知道如何解决这个问题,并感激任何帮助。