I am trying to log messages to Selenium RC's log through Javascript. For example
seleniumRc.log('Statement');
Is it possible?
Thanks! DashK
FYI, in Selenium IDE 1.3.0, the Selenium object has a doEcho function, which is very useful. It also writes to the Selenium IDE log.
If you ever find yourself writing a User extension, the following syntax can be used:
Selenium.prototype.getSomething = function(location,text) {
this.doEcho(text);
return "Something";
}