파이썬 셀레니움 오류 질문
248
작성한 질문수 1
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options
#크롬 옵션 자동 업데이트
from webdriver_manager.chrome import ChromeDriverManager
# 꺼짐 방지
chrome_options = Options()
chrome_options.add_experimental_option("detach" , True)
#불필요 에러 메세지 제거
chrome_options.add_experimental_option("excludeSwitches" , ["enable-logging"])
Service = Service (executable_path=ChromeDriverManager().install())
driver = webdriver.Chrome(service=Service)
#주소 이동
driver.get("https://www.naver.com")
작성 코드 입니다
출력 오류
ModuleNotFoundError: No module named 'packaging'
from packaging import version
답변 0
상금은 언제 받을 수 있나요?
4
68
0
Issuance 테이블에 status, couponId 인덱스가 꼭 필요할까요?
2
49
1
4강 카드뉴스 자동화 자료
4
49
1
부하 테스트 시 설정 관련 질문드립니다
1
78
2





