QTP与Jenkins的集成帮助需要CI [英] QTP to Jenkins integration help need CI

查看:271
本文介绍了QTP与Jenkins的集成帮助需要CI的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们必须运行Jenkins的QTP VB脚本作为CI的一部分 有人可以建议我什么是最好的整合方式吗?

We have to run QTP VB Scripts from Jenkins being as a part of CI Can any one suggest me what is the best way to integrate ?

非常感谢 谢谢

推荐答案

Jenkins可以运行您可以从命令行运行的任何内容,还可以创建QTP

Jenkins can run anything you can run from the command line, and you can create QTP Automation objects :

Dim Application
Set Application = CreateObject("QuickTest.Application")
Application.Launch 
Application.Visible = True 
Application.Open "testfile", True 

Dim Test
Set Test = Application.Test
Test.Run

如果搜索quicktest.application,您会找到很多示例.

If you search for quicktest.application you will find plenty of examples.

您可以使用 查看全文

登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆