QTP恢復場景 處理找不到列表項或選單的情況

2021-05-22 00:52:12 字數 1213 閱讀 4669

relevantcodes.com

的這篇文章《

recovery scenario test run error: item in list or menu not found

》介紹了

qtp中用

recovery senario

處理找不到列表項或選單的情況:

在定義的恢復場景中使用了

recovery_listitemisnotfound

這個函式來對錯誤作出處理:

function recovery_listitemisnotfound(object, method, arguments, retval)

dim sallitems, arrallitems, intitem

with object

'retrieve all items from the listbox

sallitems = .getroproperty("all items")

'split 'all items' using a delimiter ";" into an array

arrallitems = split(sallitems, ";")

'select a random number

intitem = randomnumber.value(lbound(arrallitems), ubound(arrallitems))

.select "#" & intitem

reporter.reportevent micinfo, "listitemisnotfound", "item: " & .getroproperty("value")

end with

end function

函式的各項引數的意義如下:

object as object: the object of the current step.

method as string: the method of the current step.

arguments as array: the actual method's arguments.

result as integer: the actual method's result.

mybits 引數找不到異常處理

在初次使用mybits的時候,經常遇到下面的問題,很是頭疼,後來通過閱讀部落格終於解決了該問題!經常使用mybatis或者跟資料庫打交道的都老愛語句這個異常,那麼就總結一下解決方案,省得我下次又去找。1 dao層的抽象方法中的引數一般情況下預設的是乙個引數或者乙個物件 當我們需要傳遞多個引數時就會經...

用 setdefault 處理找不到的鍵

下面是從索引中獲取單詞出現的頻率資訊,並把他們寫進對應的列表裡。import sys import re word re re.compile r w index with open sys.ar 1 encoding utf 8 as fp for line no,line in enumerat...

VB開發 找不到工程和庫 的處理

今天在除錯程式時出現 找不到工程和庫 游標停在format函式上。搜尋了一下,有人回答 到vb中的 引用 對話方塊裡找是否有miss庫檔案!這主要是vb6安裝不正確,或不完全造成的。搜尋了半天也沒有找到什麼是miss庫檔案,只好去csdn了。正確回答如下 找不到工程和庫 這個問題,多數是引用的型別庫...