Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请分享一些有价值的信息。我没有在互联网上看到任何对此进行详细解释的文档或标准参考。即使您有与 TestNG 相关的信息(使用页面对象模型),我也会很感激。
在您使用静态变量作为驱动程序对象或页面对象之前,您可以并行运行您的测试脚本,而不管您使用的是什么单元测试框架。
对于 Junit3:您必须使用构建工具来并行运行它。您只能基于类而不是方法多线程运行它
对于 Junit4:
如何让 JUnit 测试用例并行执行?
在 TestNG 中:您在 testng.xml 本身中有线程选项。