我目前正在编写 C# 代码以使用 OTA 导出错误报告表单 HP ALM。
我能够成功获取系统字段,但不了解获取用户定义字段的方式。
下面是代码片段。我已经标记了我被卡住的地方。
BugFactory bugF;
TDFilter bugFFilter;
List bugL;
bugF = (BugFactory)qctd.BugFactory;
bugFFilter = bugF.Filter;
bugFFilter["BG_STATUS"] = "New Or \"In Dev\" Or \"In Design\"";
bugL = bugFFilter.NewList();
foreach (Bug thisBug in bugL)
{
myData = myData + String.Format("{0} {1}", thisBug.ID, thisBug.Summary) + Environment.NewLine;
writer.WriteLine("<tr>");
string myBugID = String.Format("{0}", thisBug.ID);
writer.WriteLine("<td >\n" + myBugID.ToString() + " </td>\n"); //This Works
string myBugV1Def = **// Stuck!! Need help here** <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
writer.WriteLine("<td >\n" + myBugV1Def.ToString() + " </td>\n");
Writer.WriteLine("</tr>");
}
我试过添加:
string myBugV1Def = thisBug["BG_USER_TEMPLATE_08"].Value.Name;
并且
string myBugV1Def = thisBug.Field("BG_USER_TEMPLATE_08");
但没有任何帮助。
谢谢。