Like HTTP Headers in firefox, I would like to save all the HTTP requests and responses (more importantly requests) that are sent/received during the run of selenium.
Is there a built-in tool ...
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 ...
If I have a Selenium test which is currently logged in (with HTTP Authentication) to a particular website, how can I cause the remote browser to forget the current authentication so ...
This is quite a straight forward question that I can't seem to find a comprehensive answer for. When using Selenium and Selenium proxy, how I can make the proxy catch outgoing ...
Please note this question is related to Selenium.
Before a HTML form submit i.e, selenium.click("//button[@type='submit']");
I want to inject a name value pair at native level in the HTTP Post back to the ...
It requires to inject additional header into the HTTP request to enable proxy auth. E.g.
Proxy-Authorization: Basic dGVzdDp0ZXN0,
where dGVzdDp0ZXN0 is base64 login and password.
In selenium RC there was such a possibility, ...
I first need to know if the site is present at all, such as when the connection is refused rather than a browser error or something, then test basic http authentication ...