因此,如果我直接将其作为TestNG测试运行,或者运行包含该测试的testng.xml文件,则我编写了一些可以成功运行的测试。但是目前,当我向Java Servlet发出请求时,我正在尝试调用TestNG run方法。我使用自定义报告程序将结果写入json文件,然后将这些结果发送回响应中。
但是,每当我向Servlet发出请求时,发送回的结果都告诉我所有测试都被跳过了。为什么我的测试在直接访问时会成功运行,而在被TestNG.run()调用时只是跳过?
这是我的testng.xml:
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="MyTestSuite">
<listeners>
<listener class-name="util.Listener"></listener>
<listener class-name="util.JsonReporter"></listener>
</listeners>
<test name="TestOne">
<classes>
<class name="testngs.MyTest"></class>
</classes>
</test>
</suite>
还有一个简短的虚拟测试:
package testngs;
import java.io.File;
import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
import org.testng.Assert;
import org.testng.annotations.AfterSuite;
import org.testng.annotations.BeforeSuite;
import org.testng.annotations.Test;
import pages.MyPage;
public class MyTest {
public static MyPage myPage;
public static WebDriver driver;
@BeforeSuite
public void setUpDriverAndPage() {
File file = new File("src/main/resources/chromedriver.exe");
System.setProperty("webdriver.chrome.driver", file.getAbsolutePath());
driver = new ChromeDriver();
myPage = new ManageBatchPage(driver);
driver.get("https://www.google.com");
}
@Test
public void createBatch() throws InterruptedException {
// filler code
Assert.assertEquals("hello", "hello");
}
@AfterSuite
public void cleanup() {
driver.quit();
}
}
还有我的servlet代码:
if (uri.equals("/TestProject/getTests.do")) {
TestNG runner = new TestNG();
List<String> suiteFiles = new ArrayList<String>();
suiteFiles.add(/*path to my xml*/);
runner.setTestSuites(suiteFiles);
runner.run();
// read results from json file
JsonArray testResults = ResultParser.parseJson();
response.setContentType("application/json");
response.getWriter().print(testResults);
}
答案 0 :(得分:0)
让它正常工作,但并不优雅。事实证明,从服务器运行时,我的测试文件不喜欢Webdriver的路径,但是当我直接运行该文件时,它的效果很好。在服务器上运行该文件时,必须制作一个属性文件或保存其绝对路径的文件。