xiongtao001 发表于 2010-11-17 00:14:50

QTP 如何将已经分离的对象库文件tsr,通过vbscript加载到当前测试中

QTP 如何将已经分离的对象库文件tsr,通过vbscript加载到当前测试中,最好能在当前这个case执行完后,自动的把它从对象库中移除?

simon_wang 发表于 2010-11-17 16:43:24

参考下面的代码可以解决你的问题
Dim qtApp 'As QuickTest.Application ' Declare the Application object variable
Dim qtRepositories 'As QuickTest.ObjectRepositories ' Declare an action's object repositories collection variable
Dim lngPosition

' Open QuickTest
Set qtApp = CreateObject("QuickTest.Application") ' Create the Application object
qtApp.Launch ' Launch QuickTest
qtApp.Visible = True ' Set QuickTest to be visible

' Open a test and get the "Login" action's object repositories collection
qtApp.Open "E:\QTPBASE\CodeSamplesPlus\Flight_Samples\LoginBoundry", False, False ' Open a test
Set qtRepositories = qtApp.Test.Actions("LoginErrors").ObjectRepositories ' Get the object repositories collection object of the "Login" action

' Add MainApp.tsr if it's not already in the collection
If qtRepositories.Find("E:\QTPBASE\CodeSamplesPlus\Flight_Samples\SOR.tsr") = -1 Then ' If the repository cannot be found in the collection
    qtRepositories.Add "E:\QTPBASE\CodeSamplesPlus\Flight_Samples\SOR.tsr", 1 ' Add the repository to the collection
End If


' Set the new object repository configuration as the default for all new actions
qtRepositories.SetAsDefault ' Set object repositories associated with the "Login" action as the default for all new actions

qtRepositories.RemoveAll()
页: [1]
查看完整版本: QTP 如何将已经分离的对象库文件tsr,通过vbscript加载到当前测试中