728x90
반응형
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
import time
chrome_driver = '크롬 드라이버 위치'
driver = webdriver.Chrome(chrome_driver)
driver.execute_script('window.open("https://urclass.codestates.com/mypage");') # 새 탭으로 열기
time.sleep(1) # 1초 기다리기
driver.switch_to.window(driver.window_handles[-1]) # 새 탭으로 이동
time.sleep(1)
반응형
'프로그래밍 언어 > Python' 카테고리의 다른 글
Python) 셀레니움 동적 크롤링 꿀팁 (0) | 2022.03.21 |
---|---|
Python) selenium 현재 실행중인 창에서 크롤링 (macOS) (0) | 2022.03.21 |
Python) selenium 동적 크롤링 시 click() 안될 때 (0) | 2022.03.21 |
Python) conda 가상환경 생성 및 실행 (0) | 2022.03.21 |
Python) conda install 패키지를 찾을 수 없는 경우 (0) | 2022.03.21 |
댓글