如何在没有RDP的Jenkins Windows从节点上执行Micro Focus统一功能测试

时间:2020-07-07 11:50:51

标签: jenkins jenkins-plugins hp-uft

在远程Windows从属计算机上执行UFT测试案例时,我遇到了问题。没有RDP进入该机器,手动构建就无法启动。

在没有RDP的情况下是否有任何解决方案来运行/执行UFT测试用例到从机或机器已断开连接

我们正在使用Jenkins作为执行UFT测试用例的构建工具。 我们在Jenkins中使用的Micro Focus统一功能测试插件。 Windows Slave Machine上的UFT软件已安装以执行测试用例

预先感谢

Sidhartha

1 个答案:

答案 0 :(得分:1)

在“工具”>“选项”中查看,然后在“运行会话”中查看:

Run sessions

如果需要配置远程计算机,也可以使用代码进行设置:

Dim App 'As Application
Set App = CreateObject("QuickTest.Application")
App.Launch
App.Visible = True

App.Options.Run.EnableRdp = True
App.Options.Run.RdpUserName = "HelloWorld"
App.Options.Run.RdpPasswordEncrypted = "Use the password encypter tool"

尝试设置此项时,请确保正在运行UFT高架。