본문 바로가기
Data/Crawling

[2022.01.12] How to solve DeprecationWarning on jupyter notebook?

by injekim97 2022. 1. 12.
반응형

[2022.01.12] How to solve DeprecationWarning on jupyter notebook?

 

 

 

 

 

해당 게시글은 데이터를 크롤링 할 때 아래와 같은 경고창을 없애기 위한 방법이다.

 

<ipython-input-17-a7be9bf35be8>:9: DeprecationWarning: executable_path has been deprecated, please pass in a Service object
  driver = webdriver.Chrome('C:\/chromedriver.exe') # 제어하기 위해 변수 선언

-> selenium을 jupyter notebook 에서 실행 하면 webdriver는 정상적으로 실행 되는데 경고창이 자꾸 발생 한다.

 

 

 

 

 

해결 방법

import warnings
warnings.filterwarnings(action='ignore')

-> 위의 코드 두줄 실행 하고 다시 실행하면 경고창이 사라진다.

반응형

댓글