0w0

[selenium] 파이어폭스 드라이버 Error 본문

Coding/Python

[selenium] 파이어폭스 드라이버 Error

0w0 2020. 9. 1. 20:48
728x90
반응형

수정 전 코드

bs_driver = webdriver.Firefox('C:\Windows\root\geckodriver.exe')

에러

OSError: [WinError 123] 파일 이름, 디렉터리 이름 또는 볼륨 레이블 구문이 잘못되었습니다: 'C:\\Windows\root\\geckodriver.exe'

 

수정 후 코드

bs_driver = webdriver.Firefox(executable_path=r'C:\Windows\root\geckodriver.exe') 

 

ref. https://stackoverflow.com/questions/49929374/notadirectoryerror-winerror-267-the-directory-name-is-invalid-error-while-inv

728x90
반응형
Comments