Python3.5+selenium操做Chrome瀏覽器

1.安裝seleniumhtml

命令提示符下輸入:
pip install selenium

2.下載chromedriverpython

點擊下載web

3.將解壓後的chromedriver.exe放到chrome瀏覽器的安裝目錄下。chrome

4.實例api

複製代碼
from selenium import webdriver  
import os
#引入chromedriver.exe
chromedriver = "C:/Users/Administrator/AppData/Local/Google/Chrome/Application/chromedriver.exe"
os.environ["webdriver.chrome.driver"] = chromedriver
browser = webdriver.Chrome(chromedriver)

#設置瀏覽器須要打開的url url = "http://www.baidu.com" browser.get(url)
#在百度搜索框中輸入關鍵字"python" browser.find_element_by_id("kw").send_keys("python")
#單擊搜索按鈕 browser.find_element_by_id("su").click()

#關閉瀏覽器
#browser.quit()
複製代碼
相關文章
相關標籤/搜索