您的位置:軟件測(cè)試 > 開(kāi)源軟件測(cè)試 > 開(kāi)源測(cè)試管理工具 > Testlink
幾行小代碼,將Testlink的xml用例導(dǎo)入至excel
作者:網(wǎng)絡(luò)轉(zhuǎn)載 發(fā)布時(shí)間:[ 2016/1/27 13:49:30 ] 推薦標(biāo)簽:測(cè)試管理工具 軟件測(cè)試工具

  近在使用Testlink時(shí),發(fā)現(xiàn)導(dǎo)入的用例是xml格式,且沒(méi)有合適的工具轉(zhuǎn)成excel格式,xml使用excel打開(kāi)顯示的東西也太多,網(wǎng)上也有相關(guān)工具轉(zhuǎn)成csv格式的,結(jié)果也不合人意。
  那求人不如爾己,自己寫(xiě)一個(gè)吧
  需要用到的模塊有:xml.dom.minidom(python自帶)、xlwt
  使用版本:
  python:2.7.5
  xlwt:1.0.0

  一、先分析Testlink XML格式:
  這是一個(gè)有兩級(jí)testusuit的典型的testlink用例結(jié)構(gòu),我們只需要取testsuite name,testcase name,preconditions,actions,expectedresults
  二、程序如下:
#coding:utf-8
'''
Created on 2015-8-20
@author: Administrator
'''
'''
'''
import xml.etree.cElementTree as ET
import xml.dom.minidom as xx
import os,xlwt,datetime
workbook=xlwt.Workbook(encoding="utf-8")
#
booksheet=workbook.add_sheet(u'sheet_1')
booksheet.col(0).width= 5120
booksheet.col(1).width= 5120
booksheet.col(2).width= 5120
booksheet.col(3).width= 5120
booksheet.col(4).width= 5120
booksheet.col(5).width= 5120
dom=xx.parse(r'D:\Python27 est.xml')
root = dom.documentElement
row=1
col=1
borders=xlwt.Borders()
borders.left=1
borders.right=1
borders.top=1
borders.bottom=1
style = xlwt.easyxf('align: wrap on,vert centre, horiz center')  #自動(dòng)換行、水平居中、垂直居中
#設(shè)置標(biāo)題的格式,字體方宋、加粗、背景色:菊黃
#測(cè)試項(xiàng)的標(biāo)題
title=xlwt.easyxf(u'font:name 仿宋,height 240 ,colour_index black, bold on, italic off; align: wrap on, vert centre, horiz center;pattern: pattern solid, fore_colour light_orange;')
item='測(cè)試項(xiàng)'
Subitem='測(cè)試分項(xiàng)'
CaseTitle='測(cè)試用例標(biāo)題'
Condition='預(yù)置條件'
actions='操作步驟'
Result='預(yù)期結(jié)果'
booksheet.write(0,0,item,title)
booksheet.write(0,1,Subitem,title)
booksheet.write(0,2,CaseTitle,title)
booksheet.write(0,3,Condition,title)
booksheet.write(0,4,actions,title)
booksheet.write(0,5,Result,title)
#凍結(jié)首行
booksheet.panes_frozen=True
booksheet.horz_split_pos= 1
#一級(jí)目錄
for i in root.childNodes:
testsuite=i.getAttribute('name').strip()
#print testsuite
#print testsuite
'''
寫(xiě)測(cè)試項(xiàng)
'''
print "row is :",row
booksheet.write(row,col,testsuite,style)
#二級(jí)目錄
for dd in i.childNodes:
print "       %s" % dd.getAttribute('name')
testsuite2=dd.getAttribute('name')
if not dd.getElementsByTagName('testcase'):
print "Testcase is %s" % testsuite2
row=row+1
booksheet.write(row,2,testsuite2,style)   #寫(xiě)測(cè)試分項(xiàng)
row=row+1
booksheet.write(row,1,testsuite2,style)
itemlist=dd.getElementsByTagName('testcase')
for subb in itemlist:
#print "                 %s" %  subb.getAttribute('name')
testcase=subb.getAttribute('name')
row=row+1
booksheet.write(row,2,testcase,style)
ilist=subb.getElementsByTagName('preconditions')
for ii in ilist:
preconditions=ii.firstChild.data.replace("<br />"," ")
col=col+1
booksheet.write(row,3,preconditions,style)
steplist=subb.getElementsByTagName('actions')
#print steplist
for step in steplist:
actions=step.firstChild.data.replace("<br />"," ")
col=col+1
booksheet.write(row,4,actions,style)
#print "測(cè)試步驟:",steplist[0].firstChild.data.replace("<br />"," ")
expectlist=subb.getElementsByTagName('expectedresults')
for expect in expectlist:
result=expect.childNodes[0].nodeValue.replace("<br />","" )
booksheet.write(row,5,result,style)
row=row+1
workbook.save('demo.xls')
  寫(xiě)入excel的效果如下:

軟件測(cè)試工具 | 聯(lián)系我們 | 投訴建議 | 誠(chéng)聘英才 | 申請(qǐng)使用列表 | 網(wǎng)站地圖
滬ICP備07036474 2003-2017 版權(quán)所有 上海澤眾軟件科技有限公司 Shanghai ZeZhong Software Co.,Ltd