【python selenium报错】selenium.common.exceptions.WebDriverException: Message: <html> 三种解决方案!

解决selenium的webDriver和chrom不兼容的报错

selenium.common.exceptions.WebDriverException: Message:

【python selenium报错】selenium.common.exceptions.WebDriverException: Message: <html> 三种解决方案!_第1张图片在运行python代码时遇到该问题解决方案三种(我是第三种才解决的,总结一句话:是代理ip的问题★★★):

  • 一、重新安装selenium,可能是缺少某些文件
pip uninstall selenium 
pip install selenium
  • 二、查看chrom的版本,在chrom驱动的官方网站中下载安装适配的版本(版本接近即可),并将其配置到系统环境下,具体步骤如下。
    2.1 查看自己的chrom的版本
    【python selenium报错】selenium.common.exceptions.WebDriverException: Message: <html> 三种解决方案!_第2张图片2.2 在chrom驱动的官方网站中选择合适的驱动版本,下面两个版本都可以,只要接近就行,任意点击一个即可
    【python selenium报错】selenium.common.exceptions.WebDriverException: Message: <html> 三种解决方案!_第3张图片2.3 以110.0.5481.77 为例,选择合适的版本下载,我是windows,因此,下载win32版本的驱动
    【python selenium报错】selenium.common.exceptions.WebDriverException: Message: <html> 三种解决方案!_第4张图片2.4 解压后是一个exe文件以及一个LICENSE,将其解压到合适的位置
    【python selenium报错】selenium.common.exceptions.WebDriverException: Message: <html> 三种解决方案!_第5张图片2.5 配置环境变量
    【python selenium报错】selenium.common.exceptions.WebDriverException: Message: <html> 三种解决方案!_第6张图片
    【python selenium报错】selenium.common.exceptions.WebDriverException: Message: <html> 三种解决方案!_第7张图片2.6 成功配置完后重新运行

  • 三、ip代理的问题,需要把ip代理注释掉,很玄学!
    在这里插入图片描述

希望能够帮到你!

你可能感兴趣的:(python,selenium,开发语言)