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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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:
This should enable you to capture network traffic and as a result capture http status codes of various page resources. |
|||||
|