从外部Python脚本将测试用例结果添加到Quality Center Run [英] Adding testcase results to Quality Center Run from a outside Python Script

查看:113
本文介绍了从外部Python脚本将测试用例结果添加到Quality Center Run的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想尝试添加所有步骤详细信息-预期,实际,状态, 等到从Python脚本进行的TestSet的测试用例的QC运行 住在质量中心外面. 我到这里为止(下面给出的代码),我不知道如何添加 步骤预期"和步骤实际结果".如果有人知道怎么做 请帮帮我!!拜托,我不要任何QTP解决方案. 谢谢, 代码

I want to try to add all the step details - Expected, Actual, Status, etc. to a QC Run for a testcase of a TestSet from a Python Script living outside the Quality Center. I have come till here (code given below) and I don't know how to add Step Expected and Step Actual Result. If anyone knows how do it, please help me out!! Please, I don't want any QTP solutions. Thanks, Code-

# Script name - add_tsrun.py 
# C:\Python27\python.exe 
# This script lives locally on a Windows machine that has - Python 2.7, Win32 installed, IE8 
# Dependencies on Windows Machine - Python 2.7, PythonWin32 installed, IE8, a QC Account, connectivity to QCServer 
import win32com.client, os 
tdc = win32com.client.Dispatch("TDApiOle80.TDConnection") 
tdc.InitConnection('http://QCSERVER:8080/qcbin') 
tdc.Login('USERNAME', 'PASSWORD') 
tdc.Connect('DOMAIN_NAME', 'PROJECT') 
tsFolder = tdc.TestSetTreeManager.NodeByPath('Root\\test_me\\sub_folder') 
tsList = tsFolder.FindTestSets('testset1') 
ts_object = tsList.Item(1) 
ts_dir = os.path.dirname('testset1') 
ts_name = os.path.basename('testset1') 
tsFolder = tdc.TestSetTreeManager.NodeByPath(ts_dir) 
tsList = tsFolder.FindTestSets(ts_name) 
ts_object = tsList.Item(1) 
TSTestFact = ts_object.TSTestFactory 
TestSetTestsList = TSTestFact.NewList("") 
ts_instance = TestSetTestsList.Item(1) 
newItem = ts_instance.RunFactory.AddItem(None)   # newItem == Run Object 
newItem.Status = 'No Run' 
newItem.Name = 'Run 03' 
newItem.Post() 
newItem.CopyDesignSteps()   # Copy Design Steps 
newItem.Post() 
steps = newItem.StepFactory.NewList("") 
step1 = steps[0] 
step1.Status = "Not Completed" 
step1.post() 
## How do I change the Actual Result?? 
## I can access the Actual, Expected Result by doing this, but not change it
step1.Field('ST_ACTUAL') = 'My actual result'           # This works in VB, not python as its a Syntax error!! 
Traceback (  File "<interactive input>", line 1 
SyntaxError: can't assign to function call

希望这对你们有帮助.如果您知道设置答案的答案 实际结果,请帮帮我,让我知道.谢谢, 阿米特(Amit)

Hope this helps you guys out there. If you know the answer to set the Actual Result, please help me out and let me know. Thanks, Amit

推荐答案

经过大量Google搜索后找到了答案:)

Found the answer after a lot of Google Search :)

简单->只需执行以下操作:

Simple -> Just do this:

step1.SetField("ST_ACTUAL", "my actual result") # Wohhooooo!!!!

如果以上代码无法正常工作,请尝试执行以下操作:-

If the above code fails to work, try to do the following:-

(OPTIONAL) Set your win32 com as follows- (Making ''Late Binding'')
# http://oreilly.com/catalog/pythonwin32/chapter/ch12.html
    a. Start PythonWin, and from the Tools menu, select the item COM Makepy utility.
    b. Using Windows Explorer, locate the client subdirectory (OTA COM Type Library)
       under the main win32com directory and double-click the file makepy.py.

谢谢大家...

这篇关于从外部Python脚本将测试用例结果添加到Quality Center Run的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆