[Python爬蟲] Selenium自動訪問Firefox和Chrome並實現搜尋截圖
前兩篇文章介紹了安裝,此篇文章算是一個簡單的進階應用吧!它是在Windows下通過Selenium+Python實現自動訪問Firefox和Chrome並實現搜尋截圖的功能。
[Python爬蟲] 在Windows下安裝PhantomJS和CasperJS及入門介紹(上)
[Python爬蟲] 在Windows下安裝PIP+Phantomjs+Selenium
自動訪問Firefox
可以參照前文安裝Selenium環境,目前Selenium這個用於Web應用程式測試的工具支援的瀏覽器包括IE、Mozilla Firefox、Mozilla
Suite、Chrome等。但是由於Firefox是預設安裝路徑,webdriver可以正常訪問它,而Chrome和IE需要設定driver路徑。
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import sys
reload(sys)
sys.setdefaultencoding('gb18030')
driver = webdriver.Firefox()
driver.get("http://www.baidu.com")
assert "百度" in driver.title
elem = driver.find_element_by_name("wd")
elem.send_keys("Eastmount")
elem.send_keys(Keys.RETURN)
assert "谷歌" in driver.title
driver.save_screenshot('baidu.png')
driver.close()
driver.quit()
執行效果如下圖所示,自動呼叫Firefox瀏覽器搜尋,同時輸出斷言錯誤:assert "谷歌" in driver.title AssertionError
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import sys
由於漢語中可能會遇到錯誤:reload(sys)
sys.setdefaultencoding('gb18030')
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc4 in position 33
UnicodeDecodeError: 'utf8' codec can't decode byte 0xb0 in position 35
所以此處轉換成gb編碼,該篇不重點介紹了。
建立Firefoxwebdriver例項。其中Firefox最簡單,其他Chrome還需要driver和配置路徑。接下來通過driver.get()開啟百度URL網頁,webdriver會等待網頁元素載入完成之後才把控制權交回指令碼。但是,如果要開啟了頁面在載入的過程中包含了很多AJAX,webdriver可能無法準確判斷頁面何時載入完成。driver = webdriver.Firefox()
driver.get("http://www.baidu.com")
接下來使用斷言判斷文章的標題Title是否包含“百度”和“谷歌”。對應的標題是“百度一下,你就知道”,所以其中“百度”包括,而“谷歌”會出現斷言報錯。assert "百度" in driver.title
assert "谷歌" in driver.title
同時提交頁面並獲得返回結果,為了判斷結果是否成功返回也可以使用斷言。
webdriver提供了很多如find_element_by_*的方法來匹配要查詢的元素。如利用name屬性查詢方法find_element_by_name來定位輸入框,審查元素name=wd。elem = driver.find_element_by_name("wd")
元素定位方法可以參考官網:Locating Elements
elem.send_keys("Eastmount")
elem.send_keys(Keys.RETURN)
最後是呼叫save_screenshot進行截圖,但是圖片是過程中的,怎樣獲取最後載入的圖片呢?同時,操作完成並關閉瀏覽器。當然,也可以呼叫quit()方法,兩者的區別在於:quit()方法會退出瀏覽器,而close()方法只是關閉頁面,但如果只有一個頁面被開啟,close()方法同樣會退出瀏覽器。driver.save_screenshot('baidu.png')
driver.close()
driver.quit()
自動訪問Chrome
首先下載chromedriver並置於Chrome安裝目錄。可能會遇到錯誤:
WebDriverException: Message: 'chromedriver' executable needs to be in PATH.參考官網解決方法:How to use chromedriver,我採用的是設定driver環境。
程式碼如下:
import os
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
chromedriver = "C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe"
os.environ["webdriver.chrome.driver"] = chromedriver
driver = webdriver.Chrome(chromedriver)
driver.get("http://www.python.org")
assert "Python" in driver.title
elem = driver.find_element_by_name("q")
elem.send_keys("selenium")
elem.send_keys(Keys.RETURN)
assert "Google" in driver.title
driver.close()
driver.quit()
需要放置chromedriver如下路徑,同時可以通過程式碼設定。但是由於我的Chrome可能Bug一直未修復,總是開啟錯誤。driver = webdriver.Chrome(executable_path="G:\chromedriver.exe")
構建Python+Selenium2自動化測試環境<二>:IE、Chrome和Firefox執行
用selenium實現某微博搜尋資料的抓取
RobotFramework+seleniumlibrary Web自動化測試 (三)
最後希望該篇基礎性文章對你有所幫助吧!如果有不足之處,還請海涵~
(By:Eastmount 2015-8-20 下午4點 http://blog.csdn.net/eastmount/)
相關文章
- Python爬蟲 搜尋並下載圖片Python爬蟲
- 使用Python爬蟲實現自動下載圖片Python爬蟲
- Python爬蟲全網搜尋並下載音樂Python爬蟲
- python實現selenium網路爬蟲Python爬蟲
- 搜狗搜尋微信Python爬蟲案例Python爬蟲
- [Python爬蟲] Selenium實現自動登入163郵箱和Locating Elements介紹Python爬蟲
- Python爬蟲教程-28-Selenium 操縱 ChromePython爬蟲Chrome
- Python爬蟲系列(六):搜尋文件樹Python爬蟲
- python爬蟲(四)——selenium校園網自動填報Python爬蟲
- JAVA爬蟲使用Selenium自動翻頁Java爬蟲
- 如何用Python爬蟲實現百度圖片自動下載?Python爬蟲
- 圖的廣度優先搜尋和深度優先搜尋Python實現Python
- python自動化——selenium——教程截圖筆記複習Python筆記
- selenium實現螢幕截圖
- python爬蟲十三:selenium模擬瀏覽器+chrome+windowsPython爬蟲瀏覽器ChromeWindows
- Python web自動化爬蟲-selenium/處理驗證碼/XpathPythonWeb爬蟲
- 爬蟲實戰(二):Selenium 模擬登入並爬取資訊爬蟲
- 如何利用 Chrome 瀏覽器實現滾動截圖Chrome瀏覽器
- Selenium IDE 如何實現截圖IDE
- 爬蟲Selenium+PhantomJS爬取動態網站圖片資訊(Python)爬蟲JS網站Python
- Python爬蟲之路-chrome在爬蟲中的使用Python爬蟲Chrome
- Python爬蟲之路-selenium在爬蟲中的使用Python爬蟲
- Tomcat和搜尋引擎網路爬蟲的攻防Tomcat爬蟲
- 圖靈樣書爬蟲 - Python 爬蟲實戰圖靈爬蟲Python
- 【搜尋引擎】 PostgreSQL 10 實時全文檢索和分詞、相似搜尋、模糊匹配實現類似Google搜尋自動提示SQL分詞Go
- 【0基礎學爬蟲】爬蟲基礎之自動化工具 Selenium 的使用爬蟲
- Python爬蟲的兩套解析方法和四種爬蟲實現Python爬蟲
- CDN源站遮蔽搜尋引擎爬蟲爬蟲
- 訪問統計(排除爬蟲訪問)爬蟲
- 爬蟲 Scrapy框架 爬取圖蟲圖片並下載爬蟲框架
- [python爬蟲] Selenium爬取內容並儲存至MySQL資料庫Python爬蟲MySql資料庫
- python+selenium實現自動搶票Python
- Python爬蟲教程-27-Selenium Chrome版本與chromedriver相容版本對照表Python爬蟲Chrome
- nodejs 實現 磁力連結資源搜尋 BT磁力連結爬蟲NodeJS爬蟲
- Python爬蟲基礎之seleniumPython爬蟲
- Python+Selenium+phantomjs實現網頁模擬登入和截圖PythonJS網頁
- [python爬蟲] BeautifulSoup和Selenium簡單爬取知網資訊測試Python爬蟲
- python如何爬取動漫截圖網Python