from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.common.by import By
from subprocess import CREATE_NO_WINDOW
option = Options()
option.add_argument('--headless') # 헤드레스
option.add_argument('--window-size=1920,1080') # 창 크기
services = Service(ChromeDriverManager().install())
->services.creation_flags = 0x08000000 #0x08000000 #CREATE_NO_WINDOW
driver = webdriver.Chrome(service=services, options=option) # 크롬드라이버 위치
driver.implicitly_wait(2) # 다음 시간동안 로딩 대기, 로딩 완료 시 즉시 다음 단계로 진행
driver.get(url='웹사이트 주소')
728x90
'플그래밍 > 파이써언' 카테고리의 다른 글
아나콘다 설치 방법입니다. (0) | 2023.04.09 |
---|---|
[파이썬] 폴더 내 파일명 추출 - tkinter (0) | 2023.03.26 |
[파이썬] 내가 공부하려고 만든 Tkinter 투토리얼 (0) | 2023.02.18 |
[파이썬] Pandas 기초 (0) | 2023.02.10 |
[파이썬] 간단한 계산기 (+, -, *, /) (0) | 2023.02.10 |