下面是我启动 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 - 重试请求
请让我知道如何纠正。