将变量从jenkins传递到testng.xml

将变量从jenkins传递到testng.xml,第1张

变量从jenkins传递到testng.xml

您可以在testng.xml文件http://testng.org/doc/documentation-
main.html#beanshell中
使用BeanShell脚本,并在其中读取系统变量,例如:

<test name="Test">    <method-selectors>        <method-selector> <script language="beanshell">     <![CDATA[         String myTestGroup = System.getProperty("chooseCase");         groups.containsKey(myTestGroup);     ]]> </script>        </method-selector>    </method-selectors>    <classes>        <class name="AppTest"/>        <class name="AppTest2"/>    </classes></test>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5088612.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存