The problem commonly found is that the IDE will record a 'click' command when it really needs a 'clickAndWait' command.
'click' should be used when the page under test does not need to reload after this command.
'clickAndWait' should be used when the page under test needs to reload after this command.
So, what happens is you click a control, this triggers a page load, and the IDE will attempt to click the next control before it is actually available. The 'AndWait' tells the IDE to delay processing the next command until the page has finished loading.
Typically, you will need to add the 'AndWait' to the line prior to where the error occurred.
---------------------------------------------------------------------
Posted via Jive Forums
http://forums.openqa.org/thread.jspa?threadID=13023&messageID=41285#41285---------------------------------------------------------------------
To unsubscribe, e-mail:
selenium-ide-users-unsubscribe@...
For additional commands, e-mail:
selenium-ide-users-help@...