我正在尝试打开位于我的 Eclipse 项目文件夹中的本地 HTML 文件。这是我的代码:
String baseURL = "http://www.google.com";
selenium1 = new WebDriverBackedSelenium(progressDriver, baseURL);
selenium1.open("outputtter.html");
progressDriver.manage().timeouts().implicitlyWait(2, TimeUnit.SECONDS);
selenium1.refresh();
这是行不通的。请帮忙。谢谢。