Selenium Webdriver 2.42.2、browsermob-proxy Beta 9、Windows 7/Firefox
我正在尝试调用browsermob-proxy API来捕获http网络请求,并在遵循此example之后。但是,我得到了以下错误:
The proxy server is refusing connectionsFirefox被配置为使用拒绝连接的代理服务器。
Check the proxy settings to make sure that they are correct.
Contact your network administrator to make sure the proxy server is working.如果有人知道这可能是网络问题,我们不会在我们的网络中使用代理服务器。我还运行了browsermob-proxy.bat -port 9090来启动服务器。下面是我尝试过的代码示例:
public void setDriver(String browser,String environment,String platform) throws Exception {
ProxyServer server = null;
// start the proxy
server = new ProxyServer(9091);
server.start();
server.setCaptureHeaders(true);
server.setCaptureContent(true);
// set the Selenium proxy object
Proxy proxy = server.seleniumProxy();
//Proxy proxy = new Proxy();
//proxy.setHttpProxy("localhost:9091");
caps = DesiredCapabilities.firefox();
caps.setCapability(CapabilityType.PROXY,proxy);
server.newHar("test");
public void closeDriver() throws Exception {
Har har = server.getHar(); // browserMob proxy
FileOutputStream fos = new FileOutputStream("C:/Downloads/browserMob.har");
har.writeTo(fos); // browserMob proxy
server.cleanup(); // browserMob proxy
server.stop(); // browserMob proxy
this.driver.quit();发布于 2014-08-19 19:52:50
有两个变体: 1) Browsermob代理服务器没有启动;2)代理服务器启动时参数错误;
如果您有第二个问题,请尝试以下代码:
server = new ProxyServer(9091);
server.setLocalHost(InetAddress.getByName("localhost"));
server.start();
server.setCaptureContent(true);
server.setCaptureHeaders(true);发布于 2016-05-14 10:05:25
如上所述,但有几个想法:
如此处所述:Webdriver and proxy server for firefox
InetAddress.getLocalHost()
https://stackoverflow.com/questions/25308058
复制相似问题