这个方法在实际爬虫中有时候会有奇效哦,因为他能在一定程度上跳过webdriver的检测
试用了很多方法,发现只有这种方法最好用,直接复制粘贴即可完成,赶紧收藏一下吧
先在环境变量中PATH里将chrome的路径添加进去。
在cmd中输入以下指令
chrome.exe --remote-debugging-port=9222 --user-data-dir="C:\selenum\AutomationProfile"
最后用python控制一下当前界面
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_experimental_option("debuggerAddress", "127.0.0.1:9222")
chrome_driver = "C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe"
driver = webdriver.Chrome(chrome_driver, chrome_options=chrome_options)
print(driver.title)
|