错误:无法找到或加载主类org.testng.TestNG

时间:2017-06-01 23:13:21

标签: jenkins selenium-webdriver testng

错误:无法找到或加载主类org.testng.TestNG

我使用以下步骤/命令通过命令提示符运行我的testNG脚本:

1. in my project folder, create a lib folder and copy all the jar files
2. open cmd --> cd myProjectDirectoryPath
3. set classpath=myProjectDirectoryPath/bin
4. set classpath=myProjectDirectoryPath/lib/*
5. java org.testNG.TestNG testng.xml

但之后我无法找到或加载主类org.testng.TestNG 错误。试图调试,但仍然没有成功。有人可以帮助我。

1 个答案:

答案 0 :(得分:3)

至少尝试添加到classpath

set classpath=myProjectDirectoryPath/bin
set classpath=%classpath%;myProjectDirectoryPath/lib/*

如果没有,则第二个“set”覆盖第一个。

直接在java命令中指定cp(classpath):

java -cp myProjectDirectoryPath/bin;myProjectDirectoryPath/lib/* org.testng.TestNG testng.xml

在这两种情况下,请确保其中一个文件夹中有testng.jar