반응형
[Python] 셀레니움(selenium) ChromeDriver PermissionError 해결방법 !!
갑자기 작동 잘 되던 크롤링이 PermissionError: [Errno 13] Permission denied: ... 에러가 나왔다.
WebDriverManager를 사용하고 있었는데, 확인해보니
셀레니움 4.6 버전 이상 부턴 드라이버를 따로 안써도 된다고 해서
service argument 를 제거
driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()),options=chrome_options)
아래와 같이 코드를 수정해주었더니 작동이 잘 되었다 ㅎ
chrome_options = Options()
driver = webdriver.Chrome(options=chrome_options)
728x90
반응형
'Coding > Python' 카테고리의 다른 글
[Python & Django] No module named 'mathfilters' when adding to INSTALLED_APPS 에러 해결 방법 !! (0) | 2024.04.17 |
---|---|
[python & ChatGPT] 챗지피티 API 호출 시 사용하는 파라미터(Parameter)들의 기능 (0) | 2024.04.13 |
[Python & Django] 장고에서 베이스 url 만드는 방법 !! (0) | 2024.04.08 |
[Python & PyAutoGUI] 텍스트 파일 실행하여 글 입력 후 저장하는 자동화 방법 !! (0) | 2024.03.27 |
[Python & Django] db데이터 호출하여 엑셀 파일로 전달해주는 api 만들기 (0) | 2024.03.21 |
댓글