Lisa Crispin在這篇文章講到結對測試的做法和好處:http://www.stickyminds.com/sitewide.asp?Function=edetail&ObjectType=COL&ObjectId=17354&tth=DYN&tt=siteemail&iDyn=2Since I first learned about pair programming in 2000, I’ve had good experiences
註:本文最早發表在《51測試天地》第九期對檢查Tab順序的指令碼進行完善把前面的指令碼結構適當調整,讓其可維護性更強,則可改成如下所示的指令碼:' 檢查控制項的focused屬性Public Function CheckFocus(TestObject) If TestObject.CheckProperty("focused","True") Then CheckFocus = True Else
TestComplete測試.NET的ToolStrip控制項的問題在測試指令碼回放過程中發現,單擊.NET的ToolStrip控制項的按鈕有時候會失靈。大部分情況下,使用下面的指令碼是可以成功單擊ToolStrip按鈕的:w_ToolStrip.ClickItem(‘新增課件’); 但是有時候會“失靈”,即執行了單擊操作但是沒有觸發單擊操作所關聯的事件,例如本來單擊某個ToolStrip按鈕會快顯視窗而沒有彈出,但是查看Log可以看到執行了按一下滑鼠操作的資訊。這個問題的解決辦法如下: Fun
為了防止某些測試人員上傳過大的附件到QC中,可以採用下面指令碼來定製QC的工作流程: Sub Attachment_New(Attachment) 'Use ActiveModule and ActiveDialogName to get the current context. On Error Resume Next 'Remove new attachment if file size is too big If Attachment.Type = 1 then
在AutomatedQA的網站上看到TestComplete Has Won Jolt 2008 Productivity Award AQA is pleased to announce that TestComplete has won the Productivity Award in the Testing Tools category in the 18th annual Software Development Jolt Awards presented by Software
通過Action參數來傳遞資料 Action2的指令碼如下:' Input ParametersMessage = Parameter("Msg")Msgbox Message ' Output ParametersIf NOT Message = "" Then Parameter("ReturnMsg") = "The Message is " & MessageElse Parameter("ReturnMsg") = "The Message is