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 に答える