gpt4 book ai didi

automation - org.testng.TestNGException : No free nodes found in:[DynamicGraph

转载 作者:行者123 更新时间:2023-12-03 21:36:28 25 4
gpt4 key购买 nike

我在testng中使用了同一个类的两种方法,但它不允许我这样......它给出了异常(exception)

org.testng.TestNGException: No free nodes found in:[DynamicGraph



我的测试文件是
<test name="User Data" preserve-order="true">
<classes>
<class name="LoginTest">
<methods>
<include name="Login" />
</methods>
</class>
<class name="xtr.chaut.test.PatientProfileTest">
<methods>
<include name="openPatientProfile"></include>
<include name="checkUserData"></include>
</methods>
</class>
<class name="xtr.chaut.test.Login">
<methods>
<include name="logout"></include>
</methods>
</class>
</classes>

这里的登录和注销方法来自同一个类

请给我任何解决方案

提前致谢

最佳答案

似乎每个类只能在列表中声明一次,即使每个声明中包含不同的方法,否则您将看到此错误消息:( 使用最新的 TestNG 6.8.8。我能够使用 @ Test(priority=#) 与每个测试方法的特定优先级。见 http://testng.org/doc/documentation-main.html#annotations

我的用例:实体的 crud 测试。每个实体都有自己的测试类,有 4 个方法(所以我只能单独测试单个实体 CRUD),但我也想运行整个套件(由于完整性约束和不同生成的 ID key 会失败,除非它们在完全正确的顺序)。

同样的问题在 Getting org.testng.TestNGException: No free nodes found in:[DynamicGraph Exception 提出.

关于automation - org.testng.TestNGException : No free nodes found in:[DynamicGraph,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22784768/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com