脚本将运行每个Bugzilla Bug并选择“保存更改”#39;

时间:2013-11-08 11:47:23

标签: mysql perl bugzilla

我需要单独检查每个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;

我不知道如何解决这个问题,并感激任何帮助。

0 个答案:

没有答案