使用selenium操作指定瀏覽器
selenium操作中最麻煩的就是登錄、驗證還有代理配置,因此我就想人工把這些工作搞定后再直接用selenium來操作。以chrome為例,簡單介紹下步驟:
首先創(chuàng)建一個文件夾(用來放一些瀏覽器的文件)
D:\AutomationProfile\chrome
找到谷歌瀏覽器路徑(也就是找到你的chrome.exe在哪)
chrome.exe --remote-debugging-port=9527 --user-data-dir="D:\AutomationProfile\chrome" --proxy-server="xxx.xxx.xxx.xxx:8888"
這樣就啟動一個瀏覽器,你可以現(xiàn)在上面做好登錄、驗證等等的一些操作。啟動你的selenium試試吧
from selenium import webdriver
WEBDRIVER_PATH = "D:/webdriver/chromedriver.exe"
SERVICE_LOG_PATH = "./logs/chromedriver.log"
options = webdriver.ChromeOptions()
options.add_experimental_option("debuggerAddress", "127.0.0.1:9527")
driver = webdriver.Chrome(WEBDRIVER_PATH, options=options, service_log_path=SERVICE_LOG_PATH)
driver .get('https://www.cnblogs.com/')
原文鏈接:https://www.dianjilingqu.com/459464.html