WebDriverException: 알 수 없는 오류: 이전 Google Chrome 버전에 대해 Python에서 Selenium이 포함된 Chrome 바이너리를 찾을 수 없습니다.
이전 버전의 Google에서 Selenium을 사용하는 경우 Chrome에서 다음 오류가 발생할 수 있습니다.
WebDriverException: unknown error: cannot find Chrome binary
이 오류는 ChromeDriver가 기본 위치에서 Chrome 바이너리를 찾을 수 없음을 의미합니다.
이 문제를 해결하려면:
OS | Default Chrome Location |
---|---|
Linux | /usr/bin/google-chrome1 |
Mac | /Applications/Google Chrome.app/Contents/MacOS/Google Chrome |
Windows XP | %HOMEPATH%Local SettingsApplication DataGoogleChromeApplicationchrome.exe |
Windows Vista and newer | C:Users%USERNAME%AppDataLocalGoogleChromeApplicationchrome.exe |
<code class="python">from selenium import webdriver from selenium.webdriver.chrome.options import Options options = Options() options.binary_location = "C:\Program Files\Chrome\chrome64_55.0.2883.75\chrome.exe" driver = webdriver.Chrome('chromedriver.exe', chrome_options=options)</code>
이 단계를 수행하면 "Chrome 바이너리를 찾을 수 없음" 오류를 해결하고 지정된 Chrome 버전을 사용하여 WebDriver 인스턴스를 성공적으로 시작할 수 있습니다.
위 내용은 이전 Chrome 버전이 설치된 Selenium에서 Chrome 바이너리를 찾을 수 없는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!