#----------------selenium 설정 from selenium import webdriver from selenium.webdriver.chrome.service import Service from webdriver_manager.chrome import ChromeDriverManager from selenium.webdriver.common.by import By #find_element 함수 chrome_options = webdriver.ChromeOptions() chrome_options.add_experimental_option("detach", True) #페이지가 자동으로 꺼지지 않게 해줌 driver = webdriver.Chrome(service=Service(Chrom..