标题: 从QC自动启动qtp时自动加载插件的方法如何使用? [打印本页] 作者: icefire001 时间: 2008-2-18 11:12 标题: 从QC自动启动qtp时自动加载插件的方法如何使用? 从QC自动启动qtp如何自动加载插件的方法
'此函数用于加载指定Test所有的插件,若要运行Test可自己加个qtApp.Test.Run
Function Load_Addins(testPath)
Dim qtApp 'As QuickTest.Application
Dim blnNeedChangeAddins
Dim arrTestAddins
Set qtApp = CreateObject("QuickTest.Application")
arrTestAddins = qtApp.GetAssociatedAddinsForTest(testPath)
blnNeedChangeAddins = False
For Each testAddin In arrTestAddins
If qtApp.Addins(testAddin).Status <> "Active" Then
blnNeedChangeAddins = True
Exit For
End If
Next
If qtApp.Launched And blnNeedChangeAddins Then
qtApp.Quit
End If
If blnNeedChangeAddins Then
Dim blnActivateOK
blnActivateOK = qtApp.SetActiveAddins(arrTestAddins, errorDescrīption)
If Not blnActivateOK Then
Call ErrorLog(errorDescrīption) '这里是调用自己的日志函数,可替换为自己的或注释掉
Wscrīpt.Quit
End If
End If
If Not qtApp.Launched Then
qtApp.Launch
End If
qtApp.Visible = True
qtApp.Open testPath
'可在此加入qtApp.Test.Run来运行Test
Set qtApp = Nothing
End Function 问题:1、这个方法是在QC中调用还是在QTP脚本中调用?
2、如何调用?
看来没懂我的意思,我肯定安装了插件的。帮忙回下这个帖吧,这个里面说得很清楚。 http://bbs.51testing.com/viewthr ... mp;page=2#pid941549作者: songyq521 时间: 2009-6-12 11:44 标题: 回复 3# 的帖子 从你的意思中,这个function是在QTP中调用的,对吧?!但是有个问题:
If qtApp.Launched And blnNeedChangeAddins Then
qtApp.Quit
End If
在这里就会提示:当前的应用程序忙。就是说当前正在使用QTP不能执行qtApp.Quit作者: kaidong12 时间: 2009-8-19 22:33
'Description:
'
'This example opens a test and loads all the add-ins associated with the test.
'
'Assumptions:
'There is no unsaved test currently open in QuickTest.
'For more information, see the example for the Test.SaveAs method.作者: jimmyzhou 时间: 2009-12-23 10:43
楼主的帖子我感觉只能自己写脚本启动QTP时适用,从QC启动QTP不适用,所以不要叫“从QC自动启动qtp时自动加载插件的方法如何使用?”来误导大家