最近在使用Testlink时,发现导入的用例是xml格式,且没有合适的工具转成excel格式,xml使用excel打开显示的东西也太多,网上也有相关工具转成csv格式的,结果也不合人意。

那求人不如尔己,自己写一个吧

需要用到的模块有:xml.dom.minidom(python自带)、xlwt

使用版本:

python:2.7.5

xlwt:1.0.0

一、先分析Testlink XML格式:

这是一个有两级testusuit的典型的testlink用例结构,我们只需要取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\test.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') #自动换行、水平居中、垂直居中

#设置标题的格式,字体方宋、加粗、背景色:菊黄

#测试项的标题

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='测试项'

Subitem='测试分项'

CaseTitle='测试用例标题'

Condition='预置条件'

actions='操作步骤'

Result='预期结果'

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)

#冻结首行

booksheet.panes_frozen=True

booksheet.horz_split_pos= 1

#一级目录

for i in root.childNodes:

testsuite=i.getAttribute('name').strip()

#print testsuite

#print testsuite

'''

写测试项

'''

print "row is :",row

booksheet.write(row,col,testsuite,style)

#二级目录

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) #写测试分项

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("
"," ")

col=col+1

booksheet.write(row,3,preconditions,style)

steplist=subb.getElementsByTagName('actions')

#print steplist

for step in steplist:

actions=step.firstChild.data.replace("
"," ")

col=col+1

booksheet.write(row,4,actions,style)

#print "测试步骤:",steplist[0].firstChild.data.replace("
"," ")

expectlist=subb.getElementsByTagName('expectedresults')

for expect in expectlist:

result=expect.childNodes[0].nodeValue.replace("
","" )

booksheet.write(row,5,result,style)

row=row+1

workbook.save('demo.xls')

写入excel的效果如下:

我们再来看个实例:

需要下载一个module:xlwt,如下是source code

import xml.dom.minidom

import xlwt

import sys

col = 0

row = 0

def handle_xml_report(xml_report, excel):

problems = xml_report.getElementsByTagName("problem")

handle_problems(problems, excel)

def handle_problems(problems, excel):

for problem in problems:

handle_problem(problem, excel)

def handle_problem(problem, excel):

global row

global col

code = problem.getElementsByTagName("code")

file = problem.getElementsByTagName("file")

line = problem.getElementsByTagName("line")

message = problem.getElementsByTagName("message")

for node in code:

excel.write(row, col, node.firstChild.data)

col = col + 1

for node in file:

excel.write(row, col, node.firstChild.data)

col = col + 1

for node in line:

excel.write(row, col, node.firstChild.data)

col = col + 1

for node in message:

excel.write(row, col, node.firstChild.data)

col = col + 1

row = row+1

col = 0

if __name__ == '__main__':

if(len(sys.argv) <= 1):

print ("usage: xml2xls src_file [dst_file]")

exit(0)

#the 1st argument is XML report ; the 2nd is XLS report

if(len(sys.argv) == 2):

xls_report = sys.argv[1][:-3] + 'xls'

#if there are more than 2 arguments, only the 1st & 2nd make sense

else:

xls_report = sys.argv[2]

xmldoc = xml.dom.minidom.parse(sys.argv[1])

wb = xlwt.Workbook()

ws = wb.add_sheet('MOLint')

ws.write(row, col, 'Error Code')

col = col + 1

ws.write(row, col, 'file')

col = col + 1

ws.write(row, col, 'line')

col = col + 1

ws.write(row, col, 'Description')

row = row + 1

col = 0

handle_xml_report(xmldoc, ws)

wb.save(xls_report)

本文标题: Python实现将xml导入至excel

本文地址: http://www.cppcns.com/jiaoben/python/135334.html

python将xml写入excel_Python实现将xml导入至excel相关推荐

  1. python把数据写入excel_Python向excel中写入数据的方法

    Python向excel中写入数据的方法 最近做了一项工作需要把处理的数据写入到Excel表格中进行保存,所以在此就简单介绍使用Python如何把数据保存到excel表格中. 数据导入之前需要安装 x ...

  2. python列表逐行写入excel_python表格数据到excel-想问下python3怎么将列表数据逐行写入excel表格呢?...

    如何用python将数据写入excel表格 简介绍一下这两个库,先说xlrd,这个Excel比较,各种方法使用起来方便: bk = xlrd.open_workbook('your.xls') sh ...

  3. python将字符写入excel_Python 爬虫并且将数据写入Excel

    听到网站爬虫,很多人都觉得很高大上,爬虫是不是黑客才能干的事啊?今天这里展示了一个简单的爬虫程序,并且对数据进行读取分析,最后写入Excel文件. 难点在于分析HTML代码上,最起码您得看得懂HTML ...

  4. python把数据写入excel_Python读写sqlite3数据库的方法并且将数据写入Excel的实例详解...

    这篇文章主要介绍了Python实现读写sqlite3数据库并将统计数据写入Excel的方法,涉及Python针对sqlite3数据库的读取及Excel文件相关操作技巧,需要的朋友可以参考下 本文实例讲 ...

  5. python把数据写入excel_Python读取和写入Excel文件(转)

    学习用Python处理Excel文件,这里主要用xlrd和xlwt模块,用前需要安装!本文是来自几篇博客和官网tutorial的整理,主要是一个入门.更多的处理Excel的方法请到官网学习,链接为:h ...

  6. python将txt写入excel_Python读写文件(csv、txt、excel)

    大家做在数据处理的时候,肯定难免会与文件交互,那么对于指定的文件类型,我们如何操作呢? 1.python读写csv文件 import csv #python2可以用file替代open with op ...

  7. python查询结果写入excel_python实现查询的数据写入到excel

    #coding=utf-8 import sys import xlwt import pymysql as MySQLdb #这里是python3 如果你是python2.x的话,import My ...

  8. python读取文件名写入excel_Python实现读取并写入Excel文件过程解析

    需求是有两个Excel文件:1.xlsx,2.xlsx,比较2.xlsx中的A,B列和1.xlsx中的A,B列:查找1.xlsx中存在,2.xlsx中不存在的行数据,输出到result.xlsx文件中 ...

  9. python读txt写入excel_Python读取txt内容写入xls格式excel中的方法

    import xlwt import codecs def Txt_to_Excel(inputTxt,sheetName,start_row,start_col,outputExcel): fr = ...

  10. python将panadas写入excel_python pandas写入excel文件的方法示例

    pandas读取.写入csv数据非常方便,但是有时希望通过excel画个简单的图表看一下数据质量.变化趋势并保存,这时候csv格式的数据就略显不便,因此尝试直接将数据写入excel文件. pandas ...

最新文章

  1. android 释放 so,这 10 个值得开启的隐藏功能,让你的 Chrome 释放更多潜力
  2. Vue:利用Vue生成的网页,在浏览器中的标签页中的图标与标题怎么修改为自己的?
  3. 运用UE和Blocks,仅用两周打造一个VR游戏(52VR完整版译文)
  4. 使用Spring Security 资源服务器来保护Spring Cloud 微服务
  5. linux系统虚拟化测试,网络性能与磁盘测试 - Linux虚拟化性能PK:Ubuntu系统6大版本_Linux新闻_Linux公社-Linux系统门户网站...
  6. intellij中springboot热部署
  7. “已删除的应用” 流量高
  8. 如何使用WCF调试器WcfTestClient.exe
  9. 操作系统(李治军) L12内核级线程的实现
  10. hibernate框架 最新_2020年最新Java后端学习路线,送给正在入门学习Java的你!
  11. ASP.NET中常用的优化性能的方法(转贴,Icyer收集整理)
  12. ruhr启动mysql数据库_mysql报错:ERROR! MySQL is not running, but lock file (/var/lock/subsys/mysql) exists...
  13. CC2530存储器映射
  14. STM32学习记录0004——ISP串口下载
  15. php快递按选择次数排序,php快递接口查询api 不限制次数
  16. ORACLE AutoVue 服务器/桌面版/WebService/SDK安装
  17. 2018-06-27 关于小米电力猫小猫一直黄灯闪烁不匹配的问题
  18. linux meld
  19. Java(转型-多态-契约)
  20. c语言黑白棋程序设计报告,C语言游戏编程 黑白棋游戏

热门文章

  1. 用python简单代码做一个计算器
  2. 【CarMaker学习笔记】申请使用账号
  3. 【听说有人想转码】入门----凯撒密码(密文解密,偏移)
  4. quarz设置定时器任务的有效时间段_Quartz动态指定定时时间,每秒钟执行一次
  5. 推荐6款程序员开发编译工具
  6. linux命令iconv_Linux中iconv命令的简介和使用方法
  7. turbo c用C语言编写窗口,Turbo C 2.0使用教程(使用Turbo C 2.0编写C语言程序)
  8. 安卓手表ADB实用工具箱
  9. java游戏开发入门教程_JAVA制作游戏入门教程
  10. 2010 模板下载 罗斯文_利用模板建立ACCESS数据库—ACCESS图解操作系列(二)