我试图了解如何使用Ant脚本和testNG。我是Ant的新手
我正在关注本教程链接http://seleniumeasy.com/ant-tutorials/how-to-run-testng-tests-using-build-xml-file
构建似乎很成功但是我在cmd中遇到以下错误:
Error: Could not find or load main class org.testing.Test
答案 0 :(得分:0)
我猜你有本地代码声明了一个" org.testing"?更好的想法是确保您的类属于您特有的命名空间。
Selenium的进口是:
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;