up vote 4 down vote favorite
1
share [g+] share [fb]

Can I in selenium get the HTTP status code?

E.g. so I can test that if the browser requests /user/27 and no user with ID=27 exists, an HTTP 404 is returned?

My primary interest is Selenium RC, but if someone knows the answer for "normal" selenium, I can probably easily translate it into RC.

/Pete

link|improve this question

50% accept rate
feedback

4 Answers

Since Selenium 2 includes HtmlUnit, you can utilize it in order to get access to the response directly.

public static int getStatusCode(long appUserId) throws IOException {
    WebClient webClient = new WebClient();
    int code = webClient.getPage(
            "http://your.url/123/"
    ).getWebResponse().getStatusCode();
    webClient.closeAllWindows();
    return code;
}
link|improve this answer
Unfortunately that does not work with the C# version of Selenium. – Pete Feb 21 '11 at 10:20
feedback

This might not be the best use of Selenium for this type of test. There is unnecessary need to load a browser when you could do and have a faster running test

    [Test]
    [ExpectedException(typeof(WebException), UserMessage = "The remote server returned an error: (404) Not Found")]
    public void ShouldThrowA404()
    {
        HttpWebRequest task; //For Calling the page
        HttpWebResponse taskresponse = null; //Response returned
        task = (HttpWebRequest)WebRequest.Create("http://foo.bar/thiswontexistevenifiwishedonedayitwould.html");
        taskresponse = (HttpWebResponse)task.GetResponse();
    } 

If your test is redirecting to another page during a 404 Selenium could check the final page has what you expect.

link|improve this answer
Hmm. That is a very good point indeed. – Pete Mar 1 '10 at 10:22
feedback

You probably want to check out the captureNetworkTraffic() call. Right now it only works reliably with Firefox, unless you manually set up IE/Safari/etc to proxy traffic through port 4444.

To use it, just call selenium.start("captureNetworkTraffic=true"), and then later on in your script you can call selenium.captureNetworkTraffic("...") where "..." is "plain", "xml", or "json".

link|improve this answer
feedback

I know this is a shocking hack, but this is what I've done:

    protected void AssertNotYellowScreen()
    {
        var selenium = Selenium;

        if (selenium.GetBodyText().Contains("Server Error in '/' Application."))
        {
            string errorTitle = selenium.GetTitle();

            Assert.Fail("Yellow Screen of Death: {0}", errorTitle);
        }
    }

It gets the job done in the situation I needed it for, although I accept it's not ideal...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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