Element
[selenium] 크롤링 no such element 오류 해결
셀레니움 에러 크롤링을 하면서 element에 접근하는 코드 실행시 가장 많이 만나는 에러는 no such element일 것이다. 내가 지정한 element(css_selector = rogA2c)의 값을 못찾을 경우 발행하는 에러이다. 내가 크롤링하면서 이 오류를 해결했던 방법을 공유한다. selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"css selector","selector":".rogA2c"} (Session info: chrome=101.0.4951.64) 1. class_name으로 접근시 공백 오류 class_name으로 element..
[selenium]셀레니움 크롤링 데이터 가져오는 방법 정리
셀레니움 셀레니움의 사용해서 해당 웹페이지의 데이터를 가져오는 법을 알아보자 셀레니움의 기본셋팅&코드는 아래 포스팅을 참고하세요. https://zeuskwon-ds.tistory.com/60?category=1022463 [Selenium]셀레니움 크롤링 기본 사용법 최신버전 - python 셀레니움 셀레니움은 python의 크롤링 패키지로써 동적 웹 크롤링을 하기 위한 훌륭한 라이브러리이다. 셀레니움은 파이어폭스, 인터넷 익스플로어, 크롬등과 같은 브라우저를 컨트롤 할 수 있게 zeuskwon-ds.tistory.com element에 접근해서 데이터 가져오기 - find_element_by, find_elements_by 차이점 find_element_by와 find_elements_by는 동일한 ..