0

以下は、IE ブラウザとhttp://google.co.inページを起動するコードです。

    File file = new File("C:/IEDriverServer/IEDriverServer.exe");
    System.setProperty("webdriver.ie.driver", file.getAbsolutePath());
    driver = new InternetExplorerDriver();
    baseUrl = "https://myruat.corp.webex.com/US/buy/signup.html";
    driver.manage().timeouts().implicitlyWait(120, TimeUnit.SECONDS);

以下のエラーが表示されます:
4235 [main] INFO org.apache.http.impl.client.DefaultHttpClient - 要求の処理中に I/O 例外 (org.apache.http.NoHttpResponseException) がキャッチされました: ターゲット サーバーが応答しませんでした
4235 [ main] INFO org.apache.http.impl.client.DefaultHttpClient - リクエストを再試行しています

直し方を教えてください。

4

3 に答える 3

0

これを使って...

// Simply give the path in the setProperty

System.setProperty("webdriver.ie.driver", "absolute_path");

//(absolute_path = Full path to the exe file of Internet Explorer)

// Ex : System.setProperty("webdriver.ie.driver", "C:\ \testing\ \IEDriver.exe");

// Use double slash instead of single slash.


WebDriver driver = new InternetExplorerDriver();
于 2013-11-06T09:36:36.243 に答える