lution88

[TIL] 220321 DeprecationWarning 경고메시지 본문

개발일지/# TIL

[TIL] 220321 DeprecationWarning 경고메시지

lution88 2022. 3. 21. 17:52
DeprecationWarning: find_elements_by_css_selector is deprecated. 
Please use find_elements(by=By.CSS_SELECTOR, value=css_selector) instead
for artist in driver.find_elements_by_css_selector('ul.popular__order li'):

셀레니움에서 데이터를 긁어오는 과정에서 발생한 경고메시지이다.

 

내가 원했던 결과대로 데이터를 가져오는데는 성공했는데 터미널 상에서 위와 같은 메시지가 출력되는것을 확인하였다.

 

찾아보니 폐지된 기능에 대한 경고 라고 한다.

메시지를 잘 읽어보면 내가 작성한 코드 대신 다른 코드로 작성해 달라고 예시까지 적혀있다.

# for artist in driver.find_elements_by_css_selector('ul.popular__order li'):
for artist in driver.find_elements(by=By.CSS_SELECTOR, value='ul.popular__order li'):
  popular_artists.append(artist.text.strip())
  

print(popular_artists)
['1 아이유 (IU)', '2 방탄소년단', '3 Red Velvet (레드벨벳)', '4 IKON', '5 멜로망스', '6 다비치', '7 윤딴딴', '8 수지 (SUZY)', '9 김동률', '10 폴킴']

위에서 예시로 적어준 코드를 토대로 코드를 바꾸면 코드를 실행 시 경고메시지가 나타나지 않게 된다.

 

 

'개발일지 > # TIL' 카테고리의 다른 글

[WIL] 14주차 회고  (0) 2022.03.24
[TIL] VSCODE Poetry 설치하기  (0) 2022.03.22
[WIL] 13주차 회고  (0) 2022.03.14
[TIL] 디스코드 봇 서버 내 유저 별명 출력하기.  (0) 2022.03.14
[WIL] 12주차 회고  (1) 2022.03.07
Comments