如何使用命令行运行 TestNG

问题描述 投票:0回答:2

我正在使用 TestNG 框架在 Selenium 中运行测试用例。通过eclipse我可以一起运行所有xml,但是我如何通过命令行或bat文件运行它。

我试过

start java -ea -Dfile.encoding=Cp1252 -classpath "/D:/Eclipse 3.6.2/eclipse/plugins/org.testng.eclipse_6.8.6.20141201_2240/lib/testng.jar;D:\XML\SpringIntegration_NIC\new_temp\bin;D:\XML\SpringIntegration\lib\SeleniumServer.jar;D:\XML\SpringIntegration\lib\selenium-server-standalone-2.37.0.jar;D:\XML\SpringIntegration\lib\selenium-java-2.37.0.zip;D:\XML\SpringIntegration_NIC\new_temp\lib\sikuli-script.jar;D:\XML\SpringIntegration_NIC\new_temp\lib\sikuli-ide.jar;D:\XML\SpringIntegration_NIC\new_temp\build.xml" org.testng.remote.RemoteTestNG -serport 28844 -d D:\XML\SpringIntegration_NIC\new_temp\test-output D:\XML\SpringIntegration_NIC\new_temp\TestNG_parallel.xml

这是从 Eclipse 运行时 Eclipse 给出的命令。我试过了,但有一段时间它在运行,大部分时间都没有运行。

selenium command-line selenium-webdriver testng
2个回答
0
投票
  1. 使用命令行导航到项目目录。像这样设置项目路径:

C:\projects\Selenium_Project set ProjectPath = C:\projects\Selenium_Project

  1. 创建一个应该指向 seleniu/testng 类文件和 jar 文件的类路径。

C:\projects\Selenium_Project set classpath = %ProjectPath%\bin;%ProjectPath%\Lib\*

in 指向类文件而 \Lib 指向 jar 文件,如果您将 jar 文件保存在其他文件夹中,则仅指向该文件夹。

  1. 执行java命令运行

C:\projects\Selenium_Project java org.testng.TestNG %ProjectPath%\TestXml.xml

如果您使用的是 Eclipse IDE,上述解决方案将有效


0
投票

请使用以下内容运行 testNg XML:

C:\TestNG_WORKSPACE>java -cp "C:\TestNG_WORKSPACE" org.testng.TestNG testng.xml
© www.soinside.com 2019 - 2024. All rights reserved.