标题: 从QTP中运行脚本向TD增加defect例子,defect并没有增加进去 高手解答下 [打印本页] 作者: xqgogopp 时间: 2007-12-7 11:39 标题: 从QTP中运行脚本向TD增加defect例子,defect并没有增加进去 高手解答下 Dim TDConnection
Set TDConnection = CreateObject("TDApiOle.TDConnection")
TDConnection.InitConnection "http://linkage-renxq/tdbin" ' URL for the DB
TDConnection.ConnectProject "TestDirector_Demo_0","admin","" ' Valid login information
If TDConnection.Connected Then
MsgBox("Connected to " + chr (13) + "Server " + TDConnection.ServerName _
+ chr (13) +"Project " + TDConnection.ProjectName )
Else
MsgBox("Not Connected")
End If
'Get the IBugFactory
Set BugFactory = TDConnection.BugFactory
'Add a new empty bug
Set Bug = BugFactory.AddItem (Nothing)
'fill the bug with relevant parameters
Bug.Status = "New"
Bug.Summary = "Connecting to TD"
Bug.Priority = "4-Very High" ' depends on the DB
Bug.AssignedTo = "admin" ' user that must exist in the DB's users list
Bug.DetectedBy = "admin" ' user that must exist in the DB's users list