zhangdizhu 发表于 2013-9-10 17:42:27

selenium打开ie浏览器能打开,但是控制台报错,

p
ackage lession1;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebDriver.Navigation;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;   

public class Test {


        public static void main(String[] args) {
                System.setProperty("webdriver.ie.driver", "C:\\Program Files\\Internet Explorer\\IEDriverServer.exe");
                WebDriver driver = new InternetExplorerDriver();
                driver.get("http://www.baidu.com");
        }

}
Started InternetExplorerDriver server (32-bit)
2.35.3.0
Listening on port 40000
2013-9-10 17:30:21 org.apache.http.impl.client.DefaultRequestDirector tryExecute
信息: I/O exception (org.apache.http.NoHttpResponseException) caught when processing request: The target server failed to respond
2013-9-10 17:30:21 org.apache.http.impl.client.DefaultRequestDirector tryExecute
信息: Retrying request
selenium 版本是2.35.0
IEDriver 版本是2.35.3 (win32)
是版本不一致的问题吗??

zhangting85 发表于 2013-9-11 12:50:47

你的IE上是否装了其他插件,有的会影响ie driver,比如一些工具条。

joykao 发表于 2013-10-10 13:42:56

这个对你测试有多大影响呢?

zhangting85 发表于 2013-10-21 21:29:32

用任务管理器关掉所有IEDriverServer.exe进程再试。应该是多个ie driver server进程产生了冲突,导致IO异常。
页: [1]
查看完整版本: selenium打开ie浏览器能打开,但是控制台报错,