当网页加载时间较长时如何处理延迟?
我正在使用 watin 进行一些单元测试。但问题是,当网页加载时间过长时,测试自动化会失败,因为所需的元素仍然不可用,但控制操作已在 watin 中执行。
I am doing some unit testing using watin. but the problem is when a web page gets too long to load, the test automation fails because the required element is still not available but the control action is already executed in watin.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将
Settings.WaitUntilExistsTimeOut
设置为您需要等待的秒数即可。Just set
Settings.WaitUntilExistsTimeOut
to wait as many seconds as you need.