1. 크롬 버전 115의 문제크롬 버전이 115가 아닐 때는 아래 코드를 이용해서 크롬 버전에 맞도록 크롬 드라이버의 버전을 가져왔는데,chrome_ver = chromedriver_autoinstaller.get_chrome_version().split('.')[0] driver_path = f'./{chrome_ver}/chromedriver.exe' if os.path.exists(driver_path): print(f"chrome driver is installed: {driver_path}") else: print(f"install the chrome driver(ver: {chrome_ver})") chromedriver_autoinstaller.install(True) 115 버전부터는 위 ..