最近好好的想了一下,感覺自己的測試技能還是很欠缺,自動化測試這方面還是差的很多,所以決定學習qtp。首先安裝的是qtp9.2,可惜在win7系統上控制項都無法識別,那只好安裝qtp11了,不過證書無法破解,只好用30天的試用版了。
例子**如下:
dialog("login").winbutton("help").click
if dialog("login").dialog("text:=flight reservations").exist then
dialog("login").dialog("text:=flight reservations").winbutton("確定").click
end if
dialog("login").winedit("agent name:").set "mercury"
dialog("login").winedit("password:").setsecure "4ff712ec6eb7e1a66773ee77c82adce274791086"
dialog("login").winbutton("ok").click
window("flight reservation").close
這樣問題就產生了,報告說「確定」沒有加入本地物件,我比較奇怪,已經加入了啊,why?
經過試驗,這樣就ok了。
dialog("login").winbutton("help").click
if dialog("login").dialog("text:=flight reservations").exist then
dialog("login").dialog("text:=flight reservations").winbutton("text:=確定").click
end if
dialog("login").winedit("agent name:").set "mercury"
dialog("login").winedit("password:").setsecure "4ff712ec6eb7e1a66773ee77c82adce274791086"
dialog("login").winbutton("ok").click
window("flight reservation").close
我的第乙個例子就搞定了,好的開始,你若有興趣就跟我一起學習吧!
學習筆記1
struct test test int x void fun class test1 test1 int x void fun int main void test1 a 行1 a.fun 行2 test1 b 行3 b.fun 行4 test c 行5 c.fun 行6 test d 行7 d....
學習筆記1
1 字串原地逆序 使用臨時變數 void reverse string s 5 求平均值 避免溢位 int f int x,int y 6 楊氏矩陣 bool young int a m n int x return false 7 十進位制轉十六進製制 string decimaltohexade...
學習筆記1
第二單元 linux的基本操作 1.改變使用者的密碼 passwd命令 注 a.只有root使用者可以修改其他使用者的密碼。普通使用者只能修改自己的密碼,且密碼必須設定地較為複雜,否則修改不成功 b.若執行passwd命令時後面不加使用者名稱,表示的是修改當前使用者的密碼。2.系統使用者的分類 注 ...