以下は、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 - リクエストを再試行しています
直し方を教えてください。