Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.