Selenium chromedriver 崩溃(版本 94)
Selenium chromedriver crashes (ver 94)
将代码撕成最低限度以进行故障排除
从硒导入 webdriver
网络=webdriver.Chrome()
web.get('https://www.google.com/')
浏览器崩溃,即自行打开和关闭
Google chrome 是:版本 94.0.4606.61(正式版)(64 位)
尝试使用不同版本的 chrome 驱动程序。现在有3个版本:
https://chromedriver.chromium.org/
https://chromedriver.storage.googleapis.com/index.html?path=95.0.4638.10/
ver95:(收到确认浏览器版本的错误消息)
当前浏览器版本为 94.0.4606.54,二进制路径为 C:\Program Files\Google\Chrome\Application\chrome.exe
版本 93 和 94:(两个版本的浏览器崩溃)
https://chromedriver.storage.googleapis.com/index.html?path=94.0.4606.41/
https://chromedriver.storage.googleapis.com/index.html?path=93.0.4577.63/
有终端消息:
DevTools 监听 ws://127.0.0.1:51253/devtools/browser/832a4d53-90ec-4f5f-b106-5cc950719cb1
(尝试了一些建议,但也无法解决。)
最近有人遇到这个问题并解决了吗?
Browser crashes i.e. opened and closed by itself
我觉得你的这句话没问题。因为你在
之后没有写任何代码
web.get('https://www.google.com/')
行,应该是关闭浏览器。
你可以在 .get()
调用之后放一些 time.sleep(5),它会静止不动。
将代码撕成最低限度以进行故障排除
从硒导入 webdriver
网络=webdriver.Chrome()
web.get('https://www.google.com/')
浏览器崩溃,即自行打开和关闭
Google chrome 是:版本 94.0.4606.61(正式版)(64 位)
尝试使用不同版本的 chrome 驱动程序。现在有3个版本: https://chromedriver.chromium.org/
https://chromedriver.storage.googleapis.com/index.html?path=95.0.4638.10/ ver95:(收到确认浏览器版本的错误消息)
当前浏览器版本为 94.0.4606.54,二进制路径为 C:\Program Files\Google\Chrome\Application\chrome.exe
版本 93 和 94:(两个版本的浏览器崩溃)
https://chromedriver.storage.googleapis.com/index.html?path=94.0.4606.41/ https://chromedriver.storage.googleapis.com/index.html?path=93.0.4577.63/
有终端消息: DevTools 监听 ws://127.0.0.1:51253/devtools/browser/832a4d53-90ec-4f5f-b106-5cc950719cb1 (尝试了一些建议,但也无法解决。)
最近有人遇到这个问题并解决了吗?
Browser crashes i.e. opened and closed by itself
我觉得你的这句话没问题。因为你在
之后没有写任何代码web.get('https://www.google.com/')
行,应该是关闭浏览器。
你可以在 .get()
调用之后放一些 time.sleep(5),它会静止不动。