Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 watin 进行自动化,但遇到了一个问题。我想等待网页完成加载,然后继续我如何使用 watin 来实现这一点,目前我正在使用 thread.sleep() 来实现这一点。什么是替代方案,我也尝试了 WaitForComplete() 但它仍然没有等待完成加载网页。
我用方法解决了我的问题WaitUntilExists()。我添加了一个 60 秒的超时时间,WaitUntilExists()因为默认超时时间是 30 秒,而且由于我的互联网速度很慢,我将它替换为 60 秒这样 browser.Div("div1").WaitUntilExists(60);
WaitUntilExists()
browser.Div("div1").WaitUntilExists(60);