如何在jenkins中集成我的appium测试

时间:2015-10-02 13:27:06

标签: java jenkins testng

我有一台Windows 7,我正在使用App使用Appium测试Android Native应用程序。使用的框架是TestNG。我想使用Jenkins为Jenkins中的构建运行烟雾测试。我期望的功能列在@Before中。我们可以在Jenkins中动态地分析所有以下内容吗?

“automationName”
“platformName”
“platformVersion”
“deviceName”
“app”
“appPackage”
“appActivity“

如果是这样的话?

现在,如果我动态参数化,我的脚本@Before中所需功能会发生什么?

1 个答案:

答案 0 :(得分:0)

非常简单,

在你的班级中,你必须包含将监听jenkin工作输入的代码。

String deviceName = PropertyUtils.getProperty("deviceName");

当您在Jenkins中配置作业时,您必须包含字符串参数,如下图所示, enter image description here

在构建时,传递每个构建所需的参数, enter image description here

您在上面传递的值将在您的代码中处理。