I have a problem with Browsermob and Selenium WebDriver. I capture all outgoing requests with a HttpRequestInterceptor. But weirdly, there are more requests than expected and compored to other tools. Does anyone know what might be the reason?
This is how i load the page:
ProxyServer server = new ProxyServer(7777);
server.start();
Proxy proxy = server.seleniumProxy();
DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setCapability(CapabilityType.PROXY, proxy);
WebDriver driver = new FirefoxDriver(capabilities);
server.addRequestInterceptor(new HttpRequestInterceptor() {
@Override
public void process(HttpRequest request, HttpContext context)
throws HttpException, IOException {
System.out.print("\n "+request.getFirstHeader("Host"));
System.out.print("\t"+ request.getRequestLine());
}
});
driver.get("http://wwww.dddd.de/index.html");
Thread.sleep(5000);
....
I compared the results to chrome developer tools and httpfox. Both had only 1 tracking request while BrowserMob proxy recorded 3.
My assumption is that the other tools "substract" redirects, while BrowserMob merely records them.
Any help is highly appreciated.