기계는 거짓말하지 않는다

Python Selenium 크롤링 창 숨기기 본문

Python

Python Selenium 크롤링 창 숨기기

KillinTime 2021. 7. 25. 15:32

Selenium 크롤링 진행 시 창을 숨길 수 있다.

# 옵션 생성
options = webdriver.ChromeOptions()

# 창 숨기는 옵션 추가
options.add_argument("headless")

# 옵션 지정
driver = webdriver.Chrome(driver_path, options=options)

 

'Python' 카테고리의 다른 글

Python os module  (0) 2021.07.29
Python zip 함수  (0) 2021.07.25
Python Selenium WebDriver 사용법, 메서드  (0) 2021.07.24
Python Matplotlib 폰트 확인, 적용  (0) 2021.07.23
Python BeautifulSoup 사용법, 속성  (0) 2021.07.20
Comments