gpt4 book ai didi

TestNG:使用 标签以保留顺序运行多个套件

转载 作者:行者123 更新时间:2023-12-03 18:03:39 24 4
gpt4 key购买 nike

我正在尝试从一个整体套件文件中运行多个套件。我定义了我需要运行的套件并运行“主”套件文件。我已经使用preserve-order 按顺序运行每个套件,但是行为并不像我预期的那样。似乎它直接运行它们,一个接一个,几乎平行。

有谁知道我可以执行套件的方法,保留顺序,理想情况下等待第一个套件在第二个套件运行之前完成?

我的套件设置如下:

<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="My test suite" preserver-order=true>
<suite-files>
<suite-file path="Test1.xml"></suite-file>
<suite-file path="Test2.xml"></suite-file>
<suite-file path="Test3.xml"></suite-file>
</suite-files>
</suite>

问候,
杰科

最佳答案

是你没有正确指定属性的问题吗?它应该是

preserve-order="true"



不是

preserver-order=true

关于TestNG:使用 <suite-files> 标签以保留顺序运行多个套件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26015237/

24 4 0