如何在等待一个测试用例执行完成时在TestNG测试套件中执行其他测试用例

时间:2018-04-11 17:42:19

标签: java selenium testng

我正在使用带有java和TestNG框架的selenium webdriver。 我的一个测试用例是安排备份并检查备份是否在预定时间发生。 在给定时间启动备份后,大约需要12分钟才能完成备份。 我想同时切换到其他测试用例。关于如何使用selenium webdriver完成任何想法

1 个答案:

答案 0 :(得分:0)

是的,您可以通过TestNG中的parellel属性实现此目的。标记上的parallel属性可以采用以下值之一:

<suite name="My suite" parallel="methods" thread-count="5">
<suite name="My suite" parallel="tests" thread-count="5">
<suite name="My suite" parallel="classes" thread-count="5">
<suite name="My suite" parallel="instances" thread-count="5">

有关详细信息,请参阅testNG doc。 http://testng.org/doc/documentation-main.html#parallel-tests