I want my Selenium IDE test test to wait 10 seconds for the id = "successed" element to appear, and fail the test if this does not happen within 10 seconds
Here is what I wrote:
Selenium.prototype.doWaitForElementIdToAppear = function(){ selenium.doWaitForCondition("selenium.assertElementNotPresent(\"id=successed\")", "10000"); }
... but he never fails. Any help would be appreciated.
source share