我是selenium的自动化新手,并尝试运行基本程序来启动Firefox并打开Google.com。但是我用“ about:blank& utm_content = firstrun ”启动了Firefox,请帮忙。在Windows 10和Firefox版本上是:48.0(最新)。我也有最新的Selenium驱动程序和JRE版本。
这是我的代码:
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class GoogleTest {
public static void main(String[] args) {
WebDriver driver = new FirefoxDriver();
driver.get("http://google.com");
}
}