
웹 크롤링을 통한 데이터 수집 (Selenium) / NoSuchElementException
·
개발 | 프로젝트/Python
머신러닝을 위한 음성 데이터 수집을 위해 웹 크롤링을 진행하였습니다. 크롬에서 크롤링을 진행할 것이기 때문에 크롤링 전에 크롬 드라이버를 설치하고 가상환경에 셀레니움을 설치하였습니다. (크롬 버전과 동일한 드라이버 설치해야 합니다 !) 크롬 드라이버 다운 : https://googlechromelabs.github.io/chrome-for-testing/ 아나콘다에서 셀레니움 설치 - pip install selenium from selenium import webdriver from selenium.webdriver import ActionChainsfrom selenium.webdriver.common.keys import Keysfrom selenium.webdriver.common.by impo..