Selenium 환경 세팅

Seunghoon Yoo·2024년 3월 26일
post-thumbnail

Selenium?

  • 웹 자동화를 위한 강력한 프레임워크

설치 방법

  • Python3 설치
  • PyCharm 설치
  • 터미널에 pip3 install selenium 입력

웹드라이버 실행

  • PyCharm 편집기에 main.py 파일 생성 후, 아래 기본 셋업 스크립트 작성
from selenium import webdriver

driver = webdriver.Chrome()

driver.get("https://velog.io/")
  • 이후 main.py 파일 실행
profile
QA Engineer

0개의 댓글