selenium.common.exceptions.SessionNotCreatedException: Message: session not created
时间: 2023-11-07 14:02:28 浏览: 307
自动化的异常,selenium.common.exceptions.StaleElementReferenceException
selenium.common.exceptions.SessionNotCreatedException: Message: session not created 是一个常见的错误,它通常发生在启动浏览器时,由于浏览器版本与驱动程序版本不匹配导致的。根据你提供的引用内容,你的Chrome浏览器版本是80,但是你下载的ChromeDriver版本是78,因此导致了这个错误。
要解决这个问题,你可以尝试下载最新版本的ChromeDriver来匹配你的Chrome浏览器版本。你可以从ChromeDriver的官方网站 https://sites.google.com/a/chromium.org/chromedriver/ 下载最新版的ChromeDriver。
另外,根据你提供的代码,你已经在导入文件中使用了try-except语句来捕捉并处理SessionNotCreatedException异常。当浏览器启动失败时,你会得到一个输出 "Chrome version unmatch." 的提示,并返回0。这是一个很好的处理方式,确保你能够及时发现和处理浏览器版本不匹配的问题。
阅读全文