知道为什么TestNG没有运行我的测试? 这是类代码(java):
public class main {
@Test
public static void main(String[] args) throws AWTException, InterruptedException
这是日食的道路: enter image description here
这是XML文件:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Suite">
<test name="Test">
<classes>
<class name="test.main"/>
</classes>
</test> <!-- Test -->
</suite> <!-- Suite -->
答案 0 :(得分:1)
我在这里发布了一个针对你的testng的演示模板。你只需要一个类和declear webdriver。 @BeforeMethod
会在开始任何@Test
之前执行,然后@AfterMethod
希望它能为您提供帮助。
package stackoverflow;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.annotations.*;
public class DemoTestNGClass {
public static WebDriver driver;
@BeforeMethod
public void setUp1() throws Exception {
driver= new ChromeDriver();
}
@Test
public void Homepage() throws InterruptedException {
//Your operation
}
@Test
public void ListingPage() throws InterruptedException {
//Your operation
}
@AfterMethod
public void afterresult(){
driver.close();
}
}
答案 1 :(得分:0)
TestNG
的Eclipse插件。