작성
·
460
0
안녕하세요. 스타트 코딩님,
크롬 버전(Version 116.0.5845.96)을 업그레이드 한 이후로 셀레니움을 통해 크롬 드라이버를 자동으로 Install 하지 못하는 상황이 반복되고 있습니다.
이 경우에는 어떻게 해야 될까요?
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
# 크롬 드라이버 자동 업데이트
from webdriver_manager.chrome import ChromeDriverManager
import time
import pyautogui
import pyperclip
# 브라우저 꺼짐 방지 코드
chrome_options = Options()
chrome_options.add_experimental_option("detach", True)
# 불필요한 에러 메세지 없기
chrome_options.add_experimental_option("excludeSwitches", ['enable-logging'])
servie = Service(executable_path=ChromeDriverManager().install())
driver = webdriver.Chrome(service=servie, options=chrome_options)
driver.get("https://shopping.naver.com/home")
안녕하세요, 혹시 강의 설명란에 코들 참고 했는데도 안되고 크롬 드라이버를 다운 받아서 코드를 작성해보았는데도 안되면 또 다른 방법이 있을까요?