from selenium import webdriver from selenium.webdriver.common.keys import Keys from selenium.webdriver.chrome.options import Options from selenium.webdriver.chrome.service import Service from webdriver_manager.chrome import ChromeDriverManager from selenium.webdriver.common.by import By from subprocess import CREATE_NO_WINDOW option = Options() option.add_argument('--headless') # 헤드레스 option.add..