不廢話,直接進入主題,本次演示如何啟動chrome,且指定默認的profile
成都創(chuàng)新互聯(lián)公司是一家專業(yè)提供紅塔企業(yè)網站建設,專注與成都網站建設、做網站、html5、小程序制作等業(yè)務。10年已為紅塔眾多企業(yè)、政府機構等服務。創(chuàng)新互聯(lián)專業(yè)網站設計公司優(yōu)惠進行中。
下載chromedriver
地址:http://chromedriver.storage.googleapis.com/index.html?path=2.33/
特別注意:看notes.txt注意版本號一定要匹配啊,如果chromedriver版本和你的chrome版本不匹配那就可能啟動不了?。。。?!
實戰(zhàn)代碼
from selenium import webdriver path="chromedriver.exe所在的完整路徑" option=webdriver.ChromeOptions() #用chrome地址欄輸入chrome://version/,查看自己的【個人資料路徑】 option.add_argument('--user-data-dir=上面查看的個人資料路徑寫這里') driver=webdriver.Chrome(executable_path=path,chrome_options=option) #return driver