1. Selenium 설치 Selenium을 설치하기 전에 Python과 pip가 설치되어 있는지 확인해야 합니다. Python 설치: https://www.python.org/downloads/ pip 설치: https://pip.pypa.io/en/stable/installation/ Selenium 설치: pip install selenium 2. WebDriver 설치 Selenium은 웹 브라우저를 제어하기 위해 WebDriver를 사용합니다. 사용하려는 브라우저에 맞는 WebDriver를 설치해야 합니다. 크롬: https://chromedriver.chromium.org/downloads 파이어폭스: https://github.com/mozilla/geckodriver/releases Web..