使用Python + Selenium + ChromeDriver对浏览器进行自动操作的时候,碰到了以下问题:
selenium.common.exceptions.WebDriverException: Message: unknown error: call function result missing 'value'
(Session info: chrome=67.0.3396.62)
(Driver info: chromedriver=2.34.522940 (1a76f96f66e3ca7b8e57d503b4dd3bccfba87af1),platform=Windows NT 6.1.7601 SP1 x86_64)
根据官方下载地址中的https://chromedriver.storage.googleapis.com/2.39/notes.txt 可知,Chrome 67对应的版本应为2.39,此处chromedriver的版本为2.34。
然而之前已经将2.39版本的chromedriver的路径添加到了环境变量。
从命令行查看chromedriver:
发现环境变量中的chromedriver确实是2.34。
查找发现2.34版本的chromedriver的路径也添加到了环境变量,将其删除,最终运行成功。