Python (1) 썸네일형 리스트형 [Python] 크롬 제어하기 (Selenium) 파이썬을 활용하여 가장 기본적인 크롬 브라우저를 제어하는 코드입니다. from selenium import webdriverfrom selenium.webdriver.chrome.options import Optionsfrom selenium.webdriver.common.by import Byfrom selenium.webdriver.common.keys import Keyschrome_option = Options()chrome_option.add_experimental_option("detach", True)chrome_option.add_argument('--incognito') #시크릿 모드driver = webdriver.Chrome(options=chrome_option)driver.impl.. 이전 1 다음