禅道 全自动指派bug

Posted 我把所有的财富都放进博客里了,想要就进来拿吧

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了禅道 全自动指派bug相关的知识,希望对你有一定的参考价值。

// ==UserScript==
// @name 禅道自动解决
// @namespace http://tampermonkey.net/
// @version 0.3
// @description try to take over the world!
// @author Alex
// @match http*://*/*
// @grant none
// @run-at document-start

// ==/UserScript==
(function(){
var Length = $("#historyItem li").length -1;
var LastOne = $($("#historyItem li")[Length]);
var status = $(LastOne).find(".item")["0"].firstChild.parentNode.childNodes[2].data;
//如果有解决按钮,直接点解决
if( $(".btn.iframe.showinonlybody")[1].innerText == " 解决"){
$(".btn.iframe.showinonlybody")[1].click();
$("#modalIframe").load(function(){
$(window.frames["modalIframe"].document).find("#resolution").val("fixed");
$(window.frames["modalIframe"].document).find("#resolvedBuildBox span")[0].innerText = "Trunk";
$(window.frames["modalIframe"].document).find("#resolvedBuild").val("trunk");
$(window.frames["modalIframe"].document).find("#submit").click();
});
}
//如果状态为解决,直接指派
else if(status == " 解决,方案为 "){
$(".btn.iframe")[3].click();
$("#modalIframe").load(function(){
$(window.frames["modalIframe"].document).find("#submit").click();
});
}

}());

配合Chrome 浏览器插件 TamperMonkey使用

以上是关于禅道 全自动指派bug的主要内容,如果未能解决你的问题,请参考以下文章

.net程序自动获取chrome浏览器cookie并检测我的BUG

.net程序自动获取chrome浏览器cookie并检测我的BUG

禅道的基本使用

禅道Bug等级划分标准

面试题

游戏测试经历的流程及发版本注意的问题(或许有遗漏)