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.
我试图让 Selenium 在 Firefox 加载后等待 5 秒钟,以便加载我的所有配置文件更改。目前,WebDriver 在配置文件更改之前开始测试,因此失败。WebDriver 中是否有任何内置函数可以延迟测试开始?
谢谢!
如果您只是在启动浏览器后使用 java
Thread.sleep(5000);