python selenium webdriver啓動chrome瀏覽器的方法

不廢話,直接進入主題,本次演示如何啓動chrome,且指定默認的profile
html


下載chromedriverweb


地址:http://chromedriver.storage.googleapis.com/index.html?path=2.33/chrome


特別注意:看notes.txt注意版本號必定要匹配啊,若是chromedriver版本和你的chrome版本不匹配那就可能啓動不了!!!!!api


實戰代碼ide


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
相關文章
相關標籤/搜索