When automating tests using the Robot framework, is it possible to read messages logged to the JS console via console.log? We are also using the selenium 2 library.
We're using a third-party library that unfortunately does not provide events or fields for accessing the information that our QA Automation team wants to test, but the information is logged into the console. I mention this because workarounds such as "publish an event" or "expose a field", are not going to be acceptable solutions.
I am also not looking for a solution that involves overriding window.console.log, because this is a hack and may not be reliable.