本文主要是介绍记录java使用selenium驱动谷歌浏览器中的坑(三)ExecuteException:The stop timeout of 2000 ms was exceeded,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
错误信息:
INFORMATION: Unable to drain process streams. Ignoring but the exception being swallowed follows. org.apache.commons.exec.ExecuteException: The stop timeout of 2000 ms was exceeded (Exit value: -559038737)
据观察是频繁的调用浏览器获取信息之后退出浏览器时报错
之前调用的退出方法是
driver.quit()
找到了一个解决的办法
把quit改为close
driver.close()
改了之后确实是没再提示过这个问题。
这篇关于记录java使用selenium驱动谷歌浏览器中的坑(三)ExecuteException:The stop timeout of 2000 ms was exceeded的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!