from selenium import webdriverfrom selenium.webdriver.chrome.service import Servicefrom selenium.webdriver.chrome.options import Optionsfrom webdriver_manager.chrome import ChromeDriverManagerOptions: Chrome 브라우저의 설정을 정의하는 객체로, 브라우저 동작을 커스터마이징할 수 있습니다. Service: ChromeDriver 실행 서비스를 관리하는 객체로, 브라우저 드라이버의 경로와 설정을 정의합니다. ChromeDriverManager: WebDriver Manager의 Chrome 드라이버 관리 기능으로, 올바른 드라이버를 다운로드하고 설..