로딩
요청 처리 중입니다...

[파이썬] selenium 사용하기

 [파이썬] selenium 사용하기

from selenium import webdriver from selenium.webdriver.chrome.options import Options import subprocess from webdriver_manager.chrome import ChromeDriverManager from selenium.webdriver.chrome.service import Service from selenium.webdriver.common.by import By subprocess.Popen(r'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe --remote-debugging-port=9222 --user-data-dir="C:\chromeCookie"') option = Options() option.add_experimental_option("debuggerAddress", "127.0.0.1:9222") driver = we...