Hi,
Im new to doh.robot. I have used dojox.robot.recorder to record the events in my testpage. But I found that,
1. If my element has an id, recorder captures the event using the id like doh.robot.mouseMoveAt('myElementsId',...)
2. But when my element does not have an id, then recorder uses document.getElementByTagName over an index to get my element. Ex: doh.robot.mouseMoveAt(function(){ return document.getElementsByTagName('SPAN')[122]; }, ...)
