selenium.common.exceptions.WebDriverException: Message: unknown Error: cannot find Chrome binary(示例代

Posted 三人行必有我师

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium.common.exceptions.WebDriverException: Message: unknown Error: cannot find Chrome binary(示例代相关的知识,希望对你有一定的参考价值。

jenkins集成web_UI自动化脚本,发送的html报告中显示:   

selenium.common.exceptions.WebDriverException: Message: unknown error: cannot find Chrome binary

如下图:

使用Chrome浏览器时,经常会遇到以下报错:浏览器没有调用起来

通常由两种问题引起的:

1.ChromeDriver.exe驱动有问题(包括版本,路径等等)

2.Chrome.exe本身有问题。

 

网上搜索的解决方案:三个

1.指定chromedriver.exe驱动绝对路径

driver = webdriver.Chrome(r\'d:\\xxx\\chromedriver.exe\')

2.添加chrome.exe到系统path环境变量

3.在代码中指定chrome.exe绝对路径。设置binary_location属性

option = webdriver.ChromeOptions()

option.binary_location=r\'C:\\Users\\Administrator\\AppData\\Local\\Google\\Chrome\\Application\\chrome.exe

driver = webdriver.Chrome()

driver.get(\'https://www.baidu.com\')


以上方案均未解决我的问题,最终解决方案如下:

   原因是:安装的chrome浏览器是在userApp下面,jenkins运行找不到

   解决方法如下两种:

  1.重新安装chrome放在C:\\Program Files (x86)下面

  C:\\Program Files (x86)\\Google\\Chrome\\Application

  2.【从user下面拷贝整个google文件夹到:C:\\Program Files (x86)】

以上是关于selenium.common.exceptions.WebDriverException: Message: unknown Error: cannot find Chrome binary(示例代的主要内容,如果未能解决你的问题,请参考以下文章