2017-02-28 54 views
-2

需要幫助的以下查詢 我已經寫硒自動化給定的測試用例,並在Excel工作表書面方式測試執行結果使用硒webdriver的Java或QC測試結果更新從Excel工作表

我想更新的結果「通過「或」失敗「進入質量控制使用上述更新的Excel表可能嗎?請幫幫我。

+0

QC支持API更新結果。您可以編寫可以作爲AfterExecution調用的小API,並解析存儲在默認測試輸出中的testng-results.xml。 QC僅支持測試用例ID,爲此您可以通過附加TCID foo_123來重命名測試用例,同時解析TCID並更新結果。 – Abhinav

+0

請閱讀[問]。請提供您嘗試過的代碼和執行結果,包括任何錯誤消息等。 – JeffC

回答

0
Dictionary testResults = new Dictionary(); 
testResults.Add("New defects in Recent Updates are red", "Pass"); 
testResults.Add("Resolved defects in Recent Updates are green", "Pass"); 
testResults.Add("Reopened defects in Recent Updates are bold", "Fail"); 
if (testResults.ContainsKey(tsTest.TestName)) 
{ 
    string status = testResults[tsTest.TestName]; 
    recordTestResult(tsTest, status); 
} 
相關問題