‘**********************************************************************************************************************************
'Connecting 'Quality Center' through QTP
‘**********************************************************************************************************************************
'Launching the QTP Application
Set objQTP = CreateObject("QuickTest.Application")
objQTP.Visible = True
objQTP.Launch
'Connect to Quality Center
'Parameters needs to be changed
objQTP.TDConnection.Connect "QCUrl", "DOMAIN", "PROJECT", "USERNAME", "PASSWORD", False
'Quitting the QTP Applicaton
objQTP.Quit
'Releasing the Variables
Set objQTP = Nothing
‘**********************************************************************************************************************************
Hi,
ReplyDeleteI need a code to connect remote QC and to change the status of Test cases, can some one help me, ASAP.