Click here to Skip to main content
15,891,951 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I got stuck up with this issue. I need to upload the QTP automation script in my local folder to ALM. i used the AOM for this but i the scripts just do not get saved
VB
<code>

 Dim objQTP as QuickTest.Application Set objQTP=CreateObject("QuickTest.Application") strLocalPath="D:\Automation\Test" strQCScriptPath="[QualityCenter] " & "Subject\Folder\Folder2\Test"Set oDic = fn_GetQC_LoginDetails
    If Not objQTP.TDConnection.IsConnected Then
        objQTP.TDConnection.Connect "URL", "Domain","Project", "UserName", "Password", False
    End If
objQTP.Test.Open strLocalPath,False,False
objQTP.Test.SaveAs strQCScriptPath,True, False  
</code>
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900