Python

chromedriver 사용시

DevHam94 2024. 12. 3. 13:19
from selenium import webdriver

browser = webdriver.Chrome()
browser.get("사이트이름")

이제 구글에서 따로 chromedriver를 다운받지않고 pip install selenium하고 webdriver.Chrome()으로 실행해주면 자동으로 크로미움이 작동된다. 

 

 

# 크로미움 실행시 창이 꺼지는 문제

아래와같은 코드를 추가해주면된다. 혹은 주피터노트북으로 꺼짐 방지옵션을 실행

 

from selenium import webdriver

# 꺼짐방지 옵션
from selenium.webdriver.common.by import By
from selenium.webdriver.chrome.options import Options

chrome_options = Options()
chrome_options.add_experimental_option("detach", True)
browser = webdriver.Chrome(options=chrome_options)

# 이동할 페이지 
browser.get("http://naver.com")