我希望我的Selenium IDE案例测试等待10秒钟,因为元素id =“成功”出现,如果在10秒内不会发生,则测试失败
这就是我写的;
Selenium.prototype.doWaitForElementIdToAppear = function(){
selenium.doWaitForCondition("selenium.assertElementNotPresent(\"id=successed\")", "10000");
}
......但它永远不会失败。 任何帮助将不胜感激。
答案 0 :(得分:7)
使用Selenium in-build函数
解决这个问题