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

I'm using Selenium 2 (in IE only) and I need to capture all page resources (js, css, images files etc.) and their HTTP status. I tried to use HTTP analyzer for this but this tool is very unstable and crashes all the time. Could you please advise how I can resolve my problem?

share|improve this question

1 Answer

up vote 0 down vote accepted

You will need to use a proxy to do something like this (Suggested one is http://proxy.browsermob.com/, although there are others). Selenium does not intercept HTTP traffic so cannot do this itself (There is an old capturenetworktraffic implementation in Selenium 1 but that was using some FireFox specific code and did not work for any other browsers).

To configure it:

 Proxy proxy = new Proxy();
 proxy.setHttpProxy(<proxyAddress>);
 DesiredCapabilities cap = DesiredCapabilities.firefox();
 cap.setCapability(CapabilityType.PROXY, proxy);
 WebDriver driver = new FirefoxDriver(cap);

This should enable you to capture network traffic and as a result capture http status codes of various page resources.

share|improve this answer
Thanks you. I found a great presentation related to this post - slideshare.net/watsonmw/performance-monitoring-in-a-day. BTW, I included FiddlerCore in my project. – Slava Aug 2 '11 at 7:09
If the answer was what you were looking for please mark it as the correct answer so others know that it solved your problem. – Ardesco Aug 2 '11 at 9:50

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.