chromedriver download https://googlechromelabs.github.io/chrome-for-testing/에서 자신의 chrome 브라우저와 버전이 같은 chromedriver 다운로드 from selenium import webdriverfrom selenium.webdriver.chrome.service import Servicefrom selenium.webdriver.chrome.options import Optionsimport timeimport paramikoimport os# SFTP 접속 정보SFTP_HOST = '192.168.0.25'SFTP_PORT = 22 # 기본 22SFTP_USER = 'userid'SFTP_PASSWORD = 'userpw'..