We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
환경
코드
driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()))
오류메시지
C:\Users\{사용자}\.wdm\drivers.json
THIRD_PARTY_NOTICES.chromedriver
chromedriver.exe
"win64_chromedriver_129.0.6668.58_for_129.0.6668": { "timestamp": "25/09/2024", "binary_path": "C:\\Users\\{사용자}\\.wdm\\drivers\\chromedriver\\win64\\129.0.6668.58\\chromedriver-win32/THIRD_PARTY_NOTICES.chromedriver" }
"win64_chromedriver_129.0.6668.58_for_129.0.6668": { "timestamp": "25/09/2024", "binary_path": "C:\\Users\\{사용자}\\.wdm\\drivers\\chromedriver\\win64\\129.0.6668.58\\chromedriver-win32/chromedriver.exe" }
SergeyPirogov/webdriver_manager#670
The text was updated successfully, but these errors were encountered:
만약 안될 경우에는 그냥 아래와 같이 코드 수정.
from selenium import webdriver from selenium.webdriver.chrome.service import Service as ChromeService driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()))
from selenium import webdriver from selenium.webdriver.chrome.service import Service as ChromeService service = ChromeService(executable_path="REAL_PATH/chrome-win64/chrome_proxy.exe") driver = webdriver.Chrome(service=service)
Sorry, something went wrong.
ydj515
No branches or pull requests
현상
환경
: window x64, python 3.10, chrome version: 129.0.6668.59코드
:driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()))
오류메시지
: [WinError 193] %1은(는) 올바른 Win32 응용 프로그램이 아닙니다해결 방안
C:\Users\{사용자}\.wdm\drivers.json
을 연다.THIRD_PARTY_NOTICES.chromedriver
->chromedriver.exe
로 변경관련 github issue link
SergeyPirogov/webdriver_manager#670
The text was updated successfully, but these errors were encountered: