51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 2181|回复: 2
打印 上一主题 下一主题

[求助] 怎么从QC启动QTP的时候自动加载插件?

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2007-10-30 11:58:36 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
我在使用QC连接QTP录制了组件以后,从QC中运行测试用例的时候自动启动QTP,但是不能加载我自己安装的DELPHIE插件,请问有什么方法吗?谢谢了。
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

该用户从未签到

2#
发表于 2007-10-30 12:18:59 | 只看该作者
可以使用automation object model
在你脚本执行之前先调用下面的Function
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, errorDescription)
            If Not blnActivateOK Then
                MsgBox errorDescription
            WScript.Quit
            End If
        End If
        If Not qtApp.Launched Then
            qtApp.Launch
        End If
        qtApp.Visible = True
        qtApp.Open testPath
        Set qtApp = Nothing
End Function
回复 支持 反对

使用道具 举报

该用户从未签到

3#
 楼主| 发表于 2007-10-30 15:33:15 | 只看该作者
谢谢 原来是需要写脚本  我回去研究一下 呵呵
回复 支持 反对

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-8 06:16 , Processed in 0.066978 second(s), 27 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表