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")
'Python' 카테고리의 다른 글
pip로 dotenv 라이브러리 설치시 에러 (0) | 2024.12.22 |
---|---|
git hub에 업로드시 .gitignore 세팅법 (0) | 2024.12.22 |
Selenium 사용을 위해 chromedriver 설정해주기 (0) | 2023.08.29 |
Requests vs Selenium (0) | 2023.08.29 |
colab 설치없이 웹에서 실행가능한 python IDE (0) | 2023.08.28 |