当我运行代码时,出现以下错误:
Cannot instantiate class mypackage.GoogleSearch
如何解决?
代码:
package mypackage;
import org.testng.annotations.*;
import org.openqa.selenium.*;
import org.openqa.selenium.firefox.FirefoxDriver;
public class GoogleSearch {
public String url = "http://www.google.com/";
public WebDriver driver = new FirefoxDriver();
@Test
public void search() {
driver.get(url);
}
}
答案 0 :(得分:1)
我得到了它的工作,显然我需要安装独立服务器:https://code.google.com/p/selenium/downloads/detail?name=selenium-server-standalone-2.39.0.jar&can=1&q=如果有人能解释为什么它会很棒,使用Visual Studio我只需要安装selenium客户端