반응형
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 96
Current browser version is 99.0.4844.84 with binary path /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
이건 크롬 버전 안 맞을 때 에러
공식 사이트 가서 크롬 버전에 맞게 다운 받으면 된다.
내 경우에는 99 버전
팝업창이 뜨면서 악성코드 검사 못함~이 나오면
Traceback (most recent call last):
File "/Users/a/Documents/imagehtml/aistages.py", line 17, in <module>
driver = webdriver.Chrome(options=opts, executable_path=chrome_driver)
File "/usr/local/lib/python3.9/site-packages/selenium/webdriver/chrome/webdriver.py", line 73, in __init__
self.service.start()
File "/usr/local/lib/python3.9/site-packages/selenium/webdriver/common/service.py", line 98, in start
self.assert_process_still_running()
File "/usr/local/lib/python3.9/site-packages/selenium/webdriver/common/service.py", line 109, in assert_process_still_running
raise WebDriverException(
selenium.common.exceptions.WebDriverException: Message: Service ./chromedriver unexpectedly exited. Status code was: -9
이 에러로 나가게 된다.
그럼 이 코드를 쓴다.
xattr -d com.apple.quarantine chromedriver
해결.
반응형
'명령어 등등' 카테고리의 다른 글
shell script 에서 for문 쓰기 (loop) (0) | 2022.06.07 |
---|---|
shell script 폴더 있는지 확인하고 생성하기 (0) | 2022.06.07 |
du -sh / du -bsh 파일 용량 찾는 명령어 (0) | 2022.05.27 |
터미널 쉘에서 해당 폴더에 파일이 몇 개 있는지 확인하는 방법 ls -l | grep ^- | wc -l (0) | 2022.04.06 |
git commit message 잘못 썼을 때 되돌리는 방법 / 수정 : git reset --soft HEAD~1 (0) | 2022.03.17 |
맥 mac에서 도커 에러.. Cannot connect to the Docker daemon - 어플리케이션 키자 (0) | 2022.02.15 |
아카몰리 복사 붙여넣기 단축키 ctrl + shift + alt (0) | 2021.10.23 |
아카몰리 github token 사용 시작 (0) | 2021.10.23 |