플그래밍/파이써언

[파이썬] 브라우저 새로고침 (selenium)

훗티v 2021. 6. 12. 14:13

 

셀레니움 웹사이트 새로고침

- 셀레니움 작업 시 새로고침이 필요한 경우

- driver.refresh()

 

 

 

코드

- 웹사이트 진입 시 3초 대기 후 새로고침 실행

 

 

from time import sleep
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.chrome.options import Options
import os
import time

# 이전 작업 종료
os.system("taskkill /im python.exe")
os.system("taskkill /im chrome.exe")
os.system("taskkill /im chromedriver.exe")

# 셀레니움 옵션
option = Options()
# option.add_argument('--headless') # 헤드레스
option.add_argument('--window-size=1890,1030') # 창 크기
driver = webdriver.Chrome(r'c:\chromedriver', options=option) # 크롬드라이버 위치
driver.implicitly_wait(5) # 다음 시간동안 로딩 대기, 로딩 완료 시 즉시 다음 단계로 진행

# 코로나 라이브 웹사이트 URL
driver.get(url='https://corona-live.com/')

# 대기 (3초)
time.sleep(3)

# 새로고침
driver.refresh()

 

 

 

 

 

[플그래밍/파이써언] - [파이썬 - 기초] 데이터 타입

[플그래밍/파이써언] - [파이썬] 002. 실시간 편성표 긁어오기 (네이버)

[플그래밍/파이써언] - [파이썬] 공공데이터 API - 지역별 아파트 매매 내역 추출하기

[플그래밍/파이써언] - [파이썬] 폴더 내 파일 확장자별로 분류하기

[플그래밍/파이써언] - [파이썬 기초] 너무 쉬운 ZeroDivisionError

 

 

 

 

 

 

728x90