Selenium_jUnit 4 - 没有可运行的方法

时间:2017-10-15 17:39:42

标签: java selenium junit junit4

我刚刚做了一个新的框架jUnit测试。有一个简单的@Test方法的类。

package newTry2;
import org.junit.Test;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;

public class testApp {

WebDriver driver;

    @Test
    public void test1(){
        driver = new ChromeDriver();
        System.out.println("LOL");
    }   
}

但在Junit运行后我总是得到“没有可运行的方法”。为什么?有我的测试注释!感谢您的提示!:)

Picture1 pom.xml

0 个答案:

没有答案