WebDriverException: 'chromedriver' 실행 파일을 헤드리스 Chrome에서 찾을 수 없음
헤드리스 Chrome에서 Selenium 스크립트를 실행할 때 사용자에게 다음 오류가 발생할 수 있습니다.
selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH
이 오류는 Python Selenium 클라이언트가 chromedriver 실행 가능 바이너리. 이 문제를 해결하려면 다음 사항을 확인하세요.
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:\YourPath\chromedriver.exe")
이러한 문제를 해결하면 Selenium Python과 함께 헤드리스 Chrome을 성공적으로 사용할 수 있습니다.
위 내용은 Selenium이 헤드리스 Chrome에서 'chromedriver' 실행 파일을 찾을 수 없음' 오류를 발생시키는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!