gpt4 book ai didi

java - webdriver 不断抛出 IOException 并重新连接

转载 作者:行者123 更新时间:2023-12-01 16:02:20 24 4
gpt4 key购买 nike

我正在使用 webdriver api (Selenium),当我尝试测试一个网站(我可以在浏览器中正常查看和浏览该网站)时,我一遍又一遍地收到以下消息。

INFO: I/O exception (java.net.ConnectException) caught when processing request: Connection timed out: connect
18-Aug-2010 12:36:08 AM org.apache.commons.httpclient.HttpMethodDirector executeWithRetry

为什么我总是收到此错误?

最佳答案

看来您必须配置代理。如果没有配置,我会得到同样的错误。

如果您使用HtmlUnitDriver(您必须使用WebDriver的具体实现来访问setProxy方法:

HtmlUnitDriver d = new HtmlUnitDriver();
d.setProxy("your.proxy.here", proxyPort);

如果您使用FirefoxDriver:

FirefoxProfile firefoxProfile = new FirefoxProfile();
Proxy proxy = new Proxy();
proxy.setHttpProxy("your.proxy.here:proxyPort");
firefoxProfile.setProxyPreferences(proxy);
WebDriver driver = new FirefoxDriver(firefoxProfile);

关于java - webdriver 不断抛出 IOException 并重新连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3510014/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com