1. 程式人生 > >Python怕爬蟲selenium、PhanmJs

Python怕爬蟲selenium、PhanmJs

西紅柿 搜索 python sele .exe https .com 安裝 關閉瀏覽器

selenium:可以模擬鼠標進行一些操作

實例1:實現自動打開google瀏覽器,進行百度搜索,並關閉瀏覽器

from selenium import webdriver
from time import sleep
#指定安裝google瀏覽器驅動程序 bro
= webdriver.Chrome(rE:\Spider爬蟲視頻\day03\chromedriver_win32\chromedriver.exe) #打開瀏覽器發起請求 bro.get(https://www.baidu.com) sleep(2) #定位到搜索框 my_text = bro.find_element_by_id(
kw) #向搜索框中輸入一個關鍵字 my_text.send_keys(西紅柿首富) sleep(5) #定位到搜索按鈕 my_button = bro.find_element_by_id(su) my_button.click() sleep(6) #關閉瀏覽器 bro.quit()

PhanmJs:定制下拉等動作

Python怕爬蟲selenium、PhanmJs