이번에 업데이트된 크롬 116 버젼용 selenium 기본 템플릿입니다
웹드라이버는 ❤️ 입니다
# 버젼 > selenium 4.11.2
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service
# 셀레니움 옵션
option = Options()
service = Service()
driver = webdriver.Chrome(service=service, options=option)
# 페이지 이동
driver.get(url='http://hoood.tistory.com')
728x90
'플그래밍 > 파이써언' 카테고리의 다른 글
[파이썬] Selenium - Only supports Chrome version 117 에러 (0) | 2023.09.14 |
---|---|
[파이썬] Selenium - ValueError: There is no such driver by url (0) | 2023.09.01 |
[파이썬] Selenium - undetected_chromedriver (크롬 116 버전) (10) | 2023.08.22 |
[파이썬] set 관련 method 알아보기 (0) | 2023.08.12 |
[파이썬] list 관련 method 알아보기 (0) | 2023.08.12 |