我正在尝试通过Javascript将消息记录到Selenium RC的日志中。例如
seleniumRc.log('Statement');
有可能吗?
谢谢! DashK
答案 0 :(得分:2)
仅供参考,在Selenium IDE 1.3.0中,Selenium对象具有doEcho功能,这非常有用。它还会写入Selenium IDE日志。
如果您发现自己编写了用户扩展名,可以使用以下语法:
Selenium.prototype.getSomething = function(location,text) {
this.doEcho(text);
return "Something";
}
答案 1 :(得分:1)
我使用Selenium的内部记录器。唯一的问题是LOG对象的位置,但我认为它位于“selenium”对象上。试试selenium.LOG.info('blah blah blah')
,或者window.top.LOG.info('blah blah blah')
。