为什么会出现此错误:
错误:无法找到或加载主类org.testng.TestNG
使用bat文件运行TestNG时发生了什么?
答案 0 :(得分:0)
您必须使用classpath
参数向testng
jar提供-cp
。也适用于其他依赖的罐子,如硒和测试类(项目)
尝试以下命令:
java -cp J:\temp\testng\*;J:\temp\workspace\TestNGExamples\bin;J:\automation\* org.testng.TestNG J:\temp\workspace\TestNGExamples\testng1.xml
注意:请根据您的机器更新路径。
对于-cp
参数,给定