프로그래밍/2022

파이썬 셀레니움(selenium) 웹 드라이버 주요 옵션 마스터

김플 2022. 9. 16. 16:26
반응형

파이썬 셀레니움 웹 드라이버에는 다양한 옵션을 사용할 수 있습니다. 이 강의 하나면  브라우저 창 크기 조절, 화면이 보이지 않는 헤드리스 모드, 자동화된 테스트 소프트웨어 메세지 제거, 음소거, 시크릿 모드 등 자주 사용하는 옵션을 배울 수 있습니다.

 

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager


options = Options()

user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.5195.102 Safari/537.36"
user_data = "내가 원하는 경로"

options.add_argument(f"user-agent={user_agent}")
options.add_argument(f"user-data-dir={user_data}")

options.add_experimental_option("detach", True) # 화면이 꺼지지 않고 유지

options.add_argument("--start-maximized") # 최대 크기로 시작
options.add_argument("--start-fullscreen") # 전체 화면(F11)으로 시작
options.add_argument("window-size=500,500") # 화면 크기 지정

options.add_argument("--headless") # 헤드리스 모드
options.add_argument("--disable-gpu")

options.add_argument("--mute-audio") # 음소거
options.add_argument("incognito") # 시크릿 모드

options.add_experimental_option("excludeSwitches", ["enable-logging"]) # 불필요한 메세지 제거
options.add_experimental_option("excludeSwitches", ["enable-automation"]) # 자동화 메세지 제거

service = Service(ChromeDriverManager().install())

driver = webdriver.Chrome(service=service, options=options)

driver.get("https://naver.com")

print(driver.page_source[:1000])

driver.quit()

자세한 사용법은 영상을 참고 바랍니다.

https://youtu.be/3uWkbfT9PNc

 

반응형

▼웹크롤링&자동화를 제대로 배워보고 싶다면?▼

 

실습으로 끝장내는 파이썬 웹 크롤링과 웹 페이지 자동화 - 인프런 | 강의

쉬운 설명과 다양한 실습으로 어떠한 사이트라도 원하는 대로 파이썬(Python) 웹 크롤링을 할 수 있게 됩니다., - 강의 소개 | 인프런...

www.inflearn.com