Python 스크립트는 Selenium을 사용하여 헤드리스 Chrome을 실행할 때 'chromedriver' 실행 파일로 인해 종종 오류가 발생합니다. PATH에서 인식되지 않습니다.
문제를 분석하기 위해 오류를 조사합니다. 로그:
selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home
이 오류는 Python 클라이언트가 chromedriver 바이너리를 찾을 수 없음을 의미합니다. 이 문제를 해결하려면 다음 사항을 해결해야 합니다.
헤드리스 모드에서 Google Chrome을 효과적으로 실행하기 위해 수정된 코드 샘플은 다음과 같습니다.
from selenium import webdriver from selenium.webdriver.chrome.options import Options chrome_options = Options() chrome_options.add_argument("--headless") driver = webdriver.Chrome(chrome_options=chrome_options, executable_path=r'C:\Utility\BrowserDrivers\chromedriver.exe') driver.get("http://www.duo.com") print("Chrome Browser Initialized in Headless Mode") driver.quit() print("Driver Exited")
위 내용은 'chromedriver' 실행 파일이 PATH에 있어야 함'으로 인해 내 Python Selenium 스크립트가 실패하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!