用QTP進行GMail郵箱的自動化測試

TIB發表於2010-03-19

relevantcodes.com的《Automating GMail with QTP》這篇文章詳細介紹瞭如何用QTP進行Gmail郵箱的自動化測試:

http://relevantcodes.com/automating-gmail-with-qtp/

 

包括Gmail登入、退出、讀取郵件、獲取新郵件數量、總共郵件數量、郵箱已使用空間等功能。其中涵蓋了描述性程式設計、正規表示式、物件識別等QTP相關技術。

 

例如在讀取郵件個數時採用了正規表示式和描述性程式設計的技術:

sText = Browser("title:=Gmail.*").Page("title:=Gmail.*")_

       .WebElement("innertext:=/d+ - /d+ of /d+", "index:=0").GetROProperty("innertext")

 

用正規表示式“/d+ - /d+ of /d+”匹配類似 1 - 4 of 4”這樣的字串。

 

 

相關文章