I need the best way to inspect HTTP response headers with Selenium. I looked around the Selenium docs and didn't see any straightforward way to do it. Help is highly appreciated.
|
|
I've answered this question a couple times on StackOverflow. Search my previous answers to dig it up. The key that you have to write some custom Java code that extends ProxyHandler and SeleniumServer. You also need to use a release AFTER 1.0 beta 2. As to the people who ask why you'd want to do this: there are a lot of reasons. In my case, we're testing an AJAX heavy app and when things go wrong, one of the first things we debug is the network wire. That helps us see if the AJAX call happened and, if so, what the response was. We're actually automated the collection of this info and capture it (along with a screenshot) with every Selenium test. |
|||||||||||||||
|
|
captureNetworkTraffic() API in DefaultSelenium captures http request/response headers and you can access them in html/xml/plain format. Here is sample code:
|
|||
|
|
I would not use Selenium for this type of test and suggest that you solve a variety of testing issues with different tools. what we do is:
Its worth spending time breaking out the responsibility of testing different aspects of the system using these different tools since using only Selenium can cause issues:
There are also some techniques - which you may or may not have come across - which you can use to make your Selenium tests more resilient. |
|||
|
|
|
What I did to handle this using Selenium (not Selenium RC) was to convert the HTML tests into JSP and then utilize Java where needed to read headers or do whatever stuff that JavaScript (selenium is just Javascript) couldn't do. Perhaps you could give a few details about how you plan to use Selenium? |
|||
|
|
It seems to me that it can be very useful to test HTTP response headers from selenium. Not in 100% of the cases, perhaps ... but there certainly are some. If you are checking out a sequence of pages, it seems like it would be useful to test some response headers as part of that testing (Content-Type and Pragma leap to mind). |
|||
|
|
|
I came up with a workaround which uses an embedded proxy, courtesy of the Proxoid project. Its lightweight, unlike practically every other alternative out there (like BrowserMob or even LittleProxy) See the HOWTO, with code, here: http://www.supermind.org/blog/968/howto-collect-webdriver-http-request-and-response-headers |
|||
|
|
|
Well, i was hoping to find out whether Accept-Encoding property from HTTP head contains "gzip", because in our company, we compress CSS and JS files in our web application by gzip and we want to test it by Selenim after each commit. |
|||
|
|
|
Read the session cookies from Selenium and then use a real HTTP library outside of Selenium to request the specific page. Here is the Python code:
|
||||
|
|