开发者问题收集

selenium.common.exceptions.webdriverexception:消息:未知错误:无chrome二进制

2021-04-25
3130

我正在尝试运行几个月前编写的 python 脚本,该脚本使用 selenium 来抓取网页。这是我的代码:

import pandas as pd
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By

driver = webdriver.Chrome(executable_path="/users/aliallam/Documents/chromedriver")

这是我收到的完整错误:

Traceback (most recent call last):
  File "/Users/aliallam/Desktop/MISOS_Python_Scraper/main.py", line 16, in <module>
    driver = webdriver.Chrome(executable_path="/users/aliallam/Documents/chromedriver")
  File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/selenium/webdriver/chrome/webdriver.py", line 76, in __init__
    RemoteWebDriver.__init__(
  File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py", line 157, in __init__
    self.start_session(capabilities, browser_profile)
  File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py", line 252, in start_session
    response = self.execute(Command.NEW_SESSION, parameters)
  File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py", line 321, in execute
    self.error_handler.check_response(response)
  File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/selenium/webdriver/remote/errorhandler.py", line 242, in check_response
    raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: unknown error: cannot find Chrome binary

我尝试了此问题下的解决方案,但仍然没有成功: Selenium 在 Mac 上给出“selenium.common.exceptions.WebDriverException:消息:未知错误:找不到 Chrome 二进制文件”

这是我将代码更改为的内容:

options = webdriver.ChromeOptions()
options.binary_location = " /Applications/Google\ Chrome\ 2.app"
chrome_driver_binary = "/users/aliallam/Documents/chromedriver"
driver = webdriver.Chrome(chrome_driver_binary,chrome_options=options)

这真是令人沮丧,非常感谢您的帮助!提前致谢!

2个回答

编辑:除了以下错误之外,我认为您还需要将二进制位置更改为 /Applications/Google Chrome 2.app/Contents/MacOS/Google Chrome

根据您发布的内容,我认为错误是由于此行中第一个引号后面有一个多余的空格造成的:

options.binary_location = " /Applications/Google\ Chrome\ 2.app"

尝试将其更改为:

options.binary_location = "/Applications/Google Chrome 2.app/Contents/MacOS/Google Chrome"

然后重新运行代码。

根据您提供的内容提供的完整代码:

from selenium import webdriver

options = webdriver.ChromeOptions()
options.binary_location = "/Applications/Google Chrome 2.app/Contents/MacOS/Google Chrome"
chrome_driver_binary = "/users/aliallam/Documents/chromedriver"
driver = webdriver.Chrome(chrome_driver_binary,chrome_options=options)

如果这不起作用,您还可以尝试

from selenium import webdriver

options = webdriver.ChromeOptions()
options.binary_location = "/Applications/Google Chrome 2.app/Contents/MacOS/Google Chrome"
executable_path = "/users/aliallam/Documents/chromedriver"
driver = webdriver.Chrome(executable_path=executable_path, chrome_options=options)
slow-but-steady
2021-04-25

对于我在 MacOS 上将下载的“Google Chrome”应用程序从“下载”文件夹移动到“应用程序”文件夹时,错误得到解决

Maiia Bocharova
2022-08-12