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
WebDriver 설치 예시 (크롬):
brew install chromedriver
3. Python 코드 작성
다음은 간단한 Python 코드 예시입니다.
Python
from selenium import webdriver
driver = webdriver.Chrome()
driver.get("https://www.google.com")
# 검색창에 "Selenium" 입력
search_box = driver.find_element_by_name("q")
search_box.send_keys("Selenium")
# 검색 버튼 클릭
search_button = driver.find_element_by_name("btnK")
search_button.click()
# 5초 후 종료
time.sleep(5)
driver.quit()
4. 실행
python selenium_example.py
궁금하신게 있으시면 댓글 달아주세요.
이 글이 도움이 되었다면 ♡(공감), 광고 눌러 주세요.
큰 도움이 됩니다.
반응형
'Front End > Python' 카테고리의 다른 글
[Python] win10toast(윈도우 알림) 사용방법 (0) | 2024.04.09 |
---|---|
[Python] 맥(MAC)에 파이썬 설치 하기 (1) | 2024.02.26 |
[Python] python 예외처리(조건문) (0) | 2023.08.24 |
[Python] 문자열 포멧팅(f-string ) (0) | 2023.08.16 |
[Python] python if, if else, if elif else 조건문 (0) | 2023.07.21 |