TestNG没有在eclipse上运行测试

时间:2017-10-16 07:32:20

标签: java eclipse selenium automation testng

知道为什么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 -->

2 个答案:

答案 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)

  1. 检查您的计算机上是否存在TestNG的Eclipse插件。
  2. 如果没有从Help =&gt;安装最新版本Eclipse Marketplace。
  3. 重启eclipse。