无法使用TestNG Selenium实例化类

时间:2014-09-16 04:22:18

标签: java selenium testng

当我运行代码时,出现以下错误:

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);          
  }
}

1 个答案:

答案 0 :(得分:1)

我得到了它的工作,显然我需要安装独立服务器:https://code.google.com/p/selenium/downloads/detail?name=selenium-server-standalone-2.39.0.jar&can=1&q=如果有人能解释为什么它会很棒,使用Visual Studio我只需要安装selenium客户端