david2008 has asked for the wisdom of the Perl Monks concerning the following question:

Hi,

Is it possible to get the http error code and status line with Selenium::Remote::Driver, or is it out of scope like with webdriver ?
http://jimevansmusic.blogspot.co.il/2012/07/webdriver-y-u-no-have-http-status-codes.html

Thanks,
David
  • Comment on get http error code with Selenium::Remote::Driver

Replies are listed 'Best First'.
Re: get http error code with Selenium::Remote::Driver
by Corion (Patriarch) on Jul 09, 2013 at 09:03 UTC

    The HTTP status code is outside of the scope of Selenium. So no interface to Selenium can easily/conveniently get at that status code.

      Is there a hard way ? :-)

        I hacked Ghostdriver for PhantomJS to return the HTTP status code, and then expanded Selenium::Remote::Driver to ask for that status code. It's a relatively small change, but I haven't spent enough time with the code to release it yet, sorry.