51Testing软件测试论坛

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

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 2618|回复: 3
打印 上一主题 下一主题

[求助] 从QC自动启动qtp如何自动加载插件

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2007-11-27 20:04:29 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
从QC的测试集中自动启动QTP的时候安装的那些插件都是没有被加载的,请问一下如何设置自动启动QTP时QTP插件的加载设置?是在QC下设置还是在QTP下设置,请指教。
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

  • TA的每日心情
    奋斗
    2014-10-15 22:18
  • 签到天数: 1 天

    连续签到: 1 天

    [LV.1]测试小兵

    4#
    发表于 2009-6-14 15:39:37 | 只看该作者
    谢谢,学习了
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    3#
    发表于 2009-6-12 11:40:01 | 只看该作者
    请问下,这个函数是加在QC里面吗?
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    2#
    发表于 2007-11-28 12:23:04 | 只看该作者
    '此函数用于加载指定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, errorDescription)
                If Not blnActivateOK Then
                    Call ErrorLog(errorDescription)  '这里是调用自己的日志函数,可替换为自己的或注释掉
                      WScript.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 下一条

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

    GMT+8, 2024-11-23 23:11 , Processed in 0.067943 second(s), 26 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

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