QTP獲取當前測試用例的執行狀態

2021-06-16 05:22:46 字數 336 閱讀 3868

qtp自身的reporter物件有乙個runstatus屬性。那麼在每乙個用例執行結束時,讀取這個屬性的值,我們就可以獲取當前用例的執行狀態。根據執行狀態的不同,執行不同的操作。

以下是示例**:

select case reporter.runstatus

case micfail

call dofailstatusemail(

)case micwarning

call dowarningstatusemail(

)case micpass

'everything is fine

end select

Pytest獲取測試用例執行結果儲存log檔案

pytest 提供的pytest runtest makereport鉤子方法,獲取每個用例的執行結果。from pytest import runner 對應原始碼 def pytest runtest makereport item,call return a py class pytest.r...

測試用例按順序執行

import unittest from if main import ceshi 匯入含有測試用例的那個方法 ifname main suite unittest.testsuite tests ceshi test 0 ceshi test 3 ceshi test 2 匯入的測試方法的類,定義...

執行測試用例的幾個注意

當測試用例編寫完成,並通過審核後,就進入到軟體測試最主要的階段,就是執行測試用例,進行軟體測試。不過在執行測試是有幾個地方需要注意 1 仔細檢查軟體測試環境是否搭建成功。執行測試前要按照測試用例中描述的測試環境去搭建,因為測試用例中的執行都是建立在這個測試環境之上的,如果測試環境的不一致,會影響測試...