인프런 커뮤니티 질문&답변

김현우님의 프로필 이미지

작성한 질문수

내 업무를 대신 할 파이썬(Python) 웹크롤링 & 자동화 (feat. 주식, 부동산 데이터 / 인스타그램)

11.5 selenium API 살펴보기

selenium deprecated error

22.05.11 21:37 작성

·

297

0

혹시 아래와 같이
DeprecationWarning: find_element_by_class_name is deprecated. Please use find_element(by=By.CLASS_NAME, value=name) instead

deprecated warning이 뜰 경우

from selenium.webdriver.common.by import By

위 내용 임포트 해서

driver.find_element(By.CLASS_NAME, "group_nav")

아래와 같이 해결하시면 좋을 것 같아서 공유해요

답변 1

1

DeepingSauce님의 프로필 이미지
DeepingSauce
지식공유자

2022. 05. 11. 22:24

좋은 정보 공유 감사드려요!

참고로 수업파일에 있는 requirements.txt에는 selenium버전이 과거버전으로 박혀있기 때문에 해당버전으로 설치하셨다면 warning이 발생하지 않을 거에요 : )