Front End/Python

[Python] 맥(MAC)에 Selenium WebDriver 사용 방법

TTOWA 2024. 2. 29. 18:21

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

 

 

궁금하신게 있으시면 댓글 달아주세요.
이 글이 도움이 되었다면 ♡(공감), 광고 눌러 주세요.

큰 도움이 됩니다.

 

 

반응형