hoim
import selenium from selenium import webdriver from selenium.webdriver.chrome.service import Service from webdriver_manager.chrome import ChromeDriverManager from selenium.webdriver.common.keys import Keys import time # url 및 로그인 정보 url= '' googl_id = ${아이디} password = ${패스워드} service = Service(ChromeDriverManager().install()) driver = webdriver.Chrome(service=service) driver.get(url) driver.imp..
1. selenium 설치 $pip3 install selenium 참고: https://www.selenium.dev/documentation/ The Selenium Browser Automation Project Selenium automates browsers. That's it! www.selenium.dev 2. chrome driver 설치 → webdriver 설치 2-1. chrome driver 수동 설치 현재 사용하고 있는 크롬과 같은 버전의 드라이버를 설치한다. https://chromedriver.chromium.org/downloads ChromeDriver - WebDriver for Chrome - Downloads Current Releases If you are using..