0

我正在尝试打开位于我的 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();

这是行不通的。请帮忙。谢谢。

4

1 回答 1

0

采用

selenium1.open("/outputtter.html");  //check the path here.
                     This depends on from where you are exactly accessing
于 2013-05-28T11:05:47.390 回答