我在Eclipse中执行Selenium时遇到了问题。
我正在使用Eclipse Luna,Mozilla Firefox 41和Selenium 2.48.2。当我尝试运行以下代码时,URL没有在Firefox中输入。
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class first {
public static void main(String args[])
{
WebDriver driver = new FirefoxDriver();
driver.get("http://www.google.com");
}
}