Authored by xuhui

自动化测试,api默认必须跑

... ... @@ -266,7 +266,11 @@
project_HTML += "</br>";
}
project_HTML += "<div class='ckbox ckbox-primary' style='display: inline'>";
if(array[i] == "Sustainable-Yohobuy-Api"){
project_HTML += " <input name='testProject' type='checkbox' disabled='true' checked='checked' id='" + array[i] + "' value='" + array[i] + "'/>";
}else{
project_HTML += " <input name='testProject' type='checkbox' id='" + array[i] + "' value='" + array[i] + "'/>";
}
project_HTML += "<label for='" + array[i] + "' style='width: 230px'>" + array[i] + "</label></div>";
}
document.getElementById("test_div").innerHTML = project_HTML;
... ...