技术干货丨Python轻松实现EXCEL转XML,项目实战
yuyutoo 2024-10-12 01:55 1 浏览 0 评论
本文将结合作者项目实践,介绍如何将EXCEL文件通过python转换为XML,以方便导入到Testlink中(Testlink仅支持XML文件的导入),并且顺便介绍一下Python常见的错误及解决方案,希望对大家有所帮助。
声明:文中转换工具涉及的代码是借鉴了其他帖子上的一部代码,结合本文作者项目的实际情况,编写而成。
输出EXCEL格式的测试用例文件
模板
测试用例使用如下模板输出,保存为XXX.xlsx文件,例如命名case.xlsx。
部分字段解释
功能点
一般EXCEL文件的一个Sheet页代表一个模块,在一个模块内部分为多个功能点,通过一个或多个测试用例对每个功能点进行一一覆盖,功能点字段就是对模块进行结构化划分的。
测试方式
该字段用以标识测试方式,是手工测试还是自动化测试,方便日后识别哪些用例是自动化实现的用例。
关键字
这个字段可以多种用途,例如用于识别产品形态,识别用例输出版本,或者用于识别质量属性,都是可以的。
作者项目中,是用于识别质量属性的,例如功能测试、性能测试、易用性测试等等。
重要性
填写P0/P1/P2,表示三个用例级别:高、中、低。
设计人员
该字段是用来标识用例的作者的,用于方便可追溯性或用例维护。
安装Python 3
由于本文中的EXCEL转换为xml的工具是用python语言写的,所以,首先需要安装python运行环境,本文中用的是3.6.2。
若已经安装了Python 3,则跳过此步骤。
下载安装python
Python3可以去网上免费下载安装,地址为:
https://www.python.org/ftp/python/3.6.2/python-3.6.2-amd64.exe
配置运行环境
安装完python后,配置环境变量。
我的电脑-》属性-》高级系统设置-》高级-》环境变量,在用户变量部分,找到变量名为path的,点击编辑、新建,将Python安装目录及pip所在目录都添加到环境变量表中,此例中为:\Python3d6\Python36\和F:\Python3d6\Python36\Scripts\。
具体的步骤在本文中就不赘述了,需要的可以自己去网上找。
调试python及pip
配置好环境变量后,就在CMD下运行python和pip,安装py脚本中涉及的python库。
但是作者在调试过程中,曾经遇到了如下的几个问题,供大家参考。
错误一
现象:
Cmd命令行下,敲pip报错,敲python正常,具体信息如下:
C:\Users\Administrator>pip
Fatal error in launcher: Unable to create process using '"c:\python36\python3.exe" "F:\Python3d6\Python36\Scripts\pip.exe" ': ???????????
C:\Users\Administrator>python3
Python 3.6.2 (v3.6.2:5fd33b5, Jul 8 2017, 04:57:36) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
前置条件:
1)Python安装目录为F:\Python3d6\Python36\;
2)已经将F:\Python3d6\Python36\和F:\Python3d6\Python36\Scripts\配置到环境变量中。
排查思路:
第一步,经初步判断,感觉是路径有问题。
随后,将安装路径改为F:\Python36\,即将“Python3d6”这层文件夹去掉,并重新配置环境变量。
现象:
Cmd命令行下,敲python正常,敲pip仍然后报错。
报错如下:
C:\Users\Administrator>pip install pywin32
Fatal error in launcher: Unable to create process using '"c:\python36\python3.exe" "F:\Python36\Scripts\pip.exe" install pywin32': ???????????
第二步,排除环境变量配置问题。
cd到安装目录下,执行pip,仍然报错。具体报错信息如下:
F:\Python36\Scripts>pip install pywin32
Fatal error in launcher: Unable to create process using '"c:\python36\python3.exe" "F:\Python36\Scripts\pip.exe" install pywin32': ???????????
第三步,尝试把python整个文件夹从F盘移动到C盘,然后修改好环境变量。
执行pip,没有报错,问题搞定,打印信息如下:
C:\Users\Administrator>pip
Usage:
pip <command> [options]
Commands:
install Install packages.
download Download packages.
uninstall Uninstall packages.
......
错误二
现象:
python运行.py文件报错 :NameError name 'reload' is not defined。
相关代码:
import sys
reload(sys)
sys.setdefaultencoding("utf-8")
原因:
setdefaultencoding是python2的sys库里边的函数,Python3的sys库里面已经没有 setdefaultencoding() 函数,并且Python3系统默认使用的就是utf-8编码。
解决方案:
将sys.setdefaultencoding("utf-8")代码整行去掉即可。
错误三
现象:调用print函数出错,具体报错信息如下:
C:\Users\Administrator>python3 F:\case\operate.py
File "F:\case\operate.py", line 46
print 'str=', str
^
SyntaxError: Missing parentheses in call to 'print'
原因:
python2.X版本与python3.X版本输出方式不同造成的。
解决方案:
Print函数后面加上括号()。
Python2代码与Python3代码不兼容
其实将python代码用python3执行,很多问题都是由于python2版本和python版本代码不兼容导致的。
下面以实际的例子,介绍一种python2代码转换成python3代码的方法。
假设:
python2.X到python3.X转换文件2to3.py的路径为C:\Python36\Tools\scripts。
待转换的文件operate.py的路径为D:\python2to3。
CMD下执行如下命令,即可将该python2文件转换为python3文件:
python3 C:\Python36\Tools\scripts\2to3.py -w D:\python2to3\operate.py
出现如下打印说明转换过程成功:
C:\Users\Administrator>python3 C:\Python36\Tools\scripts\2to3.py -w D:\python2to3\operate.py
RefactoringTool: Skipping optional fixer: buffer
RefactoringTool: Skipping optional fixer: idioms
RefactoringTool: Skipping optional fixer: set_literal
RefactoringTool: Skipping optional fixer: ws_comma
RefactoringTool: Refactored D:\python2to3\operate.py
--- D:\python2to3\operate.py (original)
+++ D:\python2to3\operate.py (refactored)
@@ -1,7 +1,8 @@
# coding:utf-8
import os,re,xlrd
import sys
-reload(sys)
+import imp
+imp.reload(sys)
sys.setdefaultencoding("utf-8")
from easy_excel import easy_excel
@@ -43,7 +44,7 @@
def actions_add_div(str):
if str:
new_action_str=""
- print 'str=', str
+ print('str=', str)
for str_index in str.split('\n'):
newline=str_index + " " + "</div> " + "<div>" + " " + "</p> " + "<p>"
new_action_str+=newline
@@ -122,16 +123,16 @@
if __name__ == "__main__":
- print os.path.abspath('.')
+ print(os.path.abspath('.'))
excellist=[]
#列出当前目录下的所有.xml文件
for fullname in iterbrowse(os.path.abspath('.')):
- print fullname
+ print(fullname)
obj1=re.compile(r'([\W\w]*)(\.xlsx)#39;)
for m in obj1.finditer(fullname):
- print m.group()
+ print(m.group())
excellist.append(m.group())
- print excellist
+ print(excellist)
for fileName in excellist:
fileName=fileName.split('\\')[-1]
file_data = xlrd.open_workbook(fileName)
@@ -139,12 +140,12 @@
sheetList=[]
for index in range(sheetnum):
sheet_name=file_data.sheets()[index].name
- print sheet_name
+ print(sheet_name)
sheetList.append(sheet_name)
- print sheetList
+ print(sheetList)
for sheetName in sheetList:
test = operate(fileName, sheetName)
test.xlsx_to_dic(sheetName)
test.dic_to_xml(fileName, sheetName)
- print "Convert success!"
+ print("Convert success!")
os.system('pause')
RefactoringTool: Files that were modified:
RefactoringTool: D:\python2to3\operate.py
从日志中可以看出,转换过程中,对哪些行进行了修改一目了然。
如果某python文件不需要转换,则会出现如下的打印:
C:\Users\Administrator>python3 C:\Python36\Tools\scripts\2to3.py -w D:\python2to3\operate.py
RefactoringTool: Skipping optional fixer: buffer
RefactoringTool: Skipping optional fixer: idioms
RefactoringTool: Skipping optional fixer: set_literal
RefactoringTool: Skipping optional fixer: ws_comma
RefactoringTool: No changes to D:\python2to3\operate.py
RefactoringTool: Files that need to be modified:
RefactoringTool: D:\python2to3\operate.py
将EXCEL转换为xml
安装好python库后,将用例表格与脚本放入同目录(脚本代码在文末),如下:
注意:用例表格的名称需用英文,不要含有中文。
cd到表格和脚本所在目录,然后运行 operate.py 文件,打印如下:
D:\python2to3>python3 operate.py
D:\python2to3
D:\python2to3\case.xlsx
D:\python2to3\case.xlsx
D:\python2to3\easy_excel.py
D:\python2to3\easy_excel.py.bak
D:\python2to3\operate.py
D:\python2to3\operate.py.bak
D:\python2to3\__pycache__\easy_excel.cpython-36.pyc
['D:\\python2to3\\case.xlsx']
XX功能模块1
XX功能模块2
['XX功能模块1', 'XX功能模块2']
('str=', '1.步骤一\n2.步骤二\n3.步骤三')
('str=', '1.步骤一\n2.步骤二\n3.步骤三')
Convert success!
请按任意键继续. . .
转换成功,按照EXCEL的sheet页输出两个XML文件:case.xlsx_XX功能模块1.xml和case.xlsx_XX功能模块2.xml,可以用来导入到Testlink用例管理系统中。
代码 easy_excel.py
# coding=utf-8
from xml.etree import ElementTree
from win32com.client import Dispatch
import win32com.client
import os
import sys
import imp
imp.reload(sys)
class easy_excel:
def __init__(self, filename=None):
self.xlApp = win32com.client.Dispatch('Excel.Application')
if filename:
self.filename = os.getcwd() + "\\" + filename
# self.xlApp.Visible=True
self.xlBook = self.xlApp.Workbooks.Open(self.filename)
else:
# self.xlApp.Visible=True
self.xlBook = self.xlApp.Workbooks.Add()
self.filename = ''
def save(self, newfilename=None):
if newfilename:
self.filename = os.getcwd() + "\\" + newfilename
# if os.path.exists(self.filename):
# os.remove(self.filename)
self.xlBook.SaveAs(self.filename)
else:
self.xlBook.Save()
def close(self):
self.xlBook.Close(SaveChanges=0)
self.xlApp.Quit()
def getCell(self, sheet, row, col):
sht = self.xlBook.Worksheets(sheet)
return sht.Cells(row, col).Value
def setCell(self, sheet, row, col, value):
sht = self.xlBook.Worksheets(sheet)
sht.Cells(row, col).Value = value
# 设置居中
sht.Cells(row, col).HorizontalAlignment = 3
sht.Rows(row).WrapText = True
def mergeCells(self, sheet, row1, col1, row2, col2):
start_coloum = int(dic_config["start_coloum"])
# 如果这列不存在就不合并单元格
if col2 != start_coloum - 1:
sht = self.xlBook.Worksheets(sheet)
sht.Range(sht.Cells(row1, col1), sht.Cells(row2, col2)).Merge()
# else:
# print 'Merge cells coloum %s failed!' %col2
def setBorder(self, sheet, row, col):
sht = self.xlBook.Worksheets(sheet)
sht.Cells(row, col).Borders.LineStyle = 1
def set_col_width(self, sheet, start, end, length):
start += 96
end += 96
msg = chr(start) + ":" + chr(end)
# print msg
sht = self.xlBook.Worksheets(sheet)
sht.Columns(msg.upper()).ColumnWidth = length
operate.py
# coding:utf-8
import os,re,xlrd
import sys
import imp
imp.reload(sys)
from easy_excel import easy_excel
class operate():
def __init__(self, ExcelFileName, SheetName):
self.excelFile = ExcelFileName
self.excelSheet = SheetName
self.temp = easy_excel(self.excelFile)
self.dic_testlink = {}
self.row_flag = 2
self.testsuite = self.temp.getCell(self.excelSheet, 2, 2)
#print 'self.testsuite=',self.testsuite
self.dic_testlink[self.testsuite] = {"node_order": "13", "details": "", "testcase": []}
self.content = ""
self.content_list = []
def xlsx_to_dic(self, SheetName):
while True:
testcase = {"name": "", "node_order": "100", "externalid": "", "version": "1", "summary": "",
"preconditions": "", "execution_type": "1", "importance": "3", "steps": [], "keywords": "P1", "author":""}
testcase["name"] = self.temp.getCell(self.excelSheet, self.row_flag, 5)
testcase["summary"] = self.temp.getCell(self.excelSheet, self.row_flag, 3)
testcase["preconditions"] = self.temp.getCell(self.excelSheet, self.row_flag, 6)
execution_type = self.temp.getCell(self.excelSheet, self.row_flag, 9)
testcase["keywords"] = self.temp.getCell(self.excelSheet, self.row_flag, 10)
testcase["author"] = self.temp.getCell(self.excelSheet, self.row_flag, 11)
if execution_type == "自动":
testcase["execution_type"] = 2
step_number = 1
importance = self.temp.getCell(self.excelSheet, self.row_flag, 4)
if importance == "基本功能" or importance == "P1":
testcase["importance"]="2"
elif importance == "拓展" or importance == "P2":
testcase["importance"] = "1"
while True:
step = {"step_number": "", "actions": "", "expectedresults": "", "execution_type": ""}
step["step_number"] = step_number
step["actions"] = self.temp.getCell(self.excelSheet, self.row_flag, 7)
def actions_add_div(str):
if str:
new_action_str=""
print(('str=', str))
for str_index in str.split('\n'):
newline=str_index + " " + "</div> " + "<div>" + " " + "</p> " + "<p>"
new_action_str+=newline
return new_action_str[:-21]
step["actions"]=actions_add_div(step["actions"])
step["expectedresults"] = self.temp.getCell(self.excelSheet, self.row_flag, 8)
testcase["steps"].append(step)
step_number += 1
self.row_flag += 1
if self.temp.getCell(self.excelSheet, self.row_flag, 1) is not None or self.temp.getCell(self.excelSheet, self.row_flag, 5) is None:
break
# print testcase
self.dic_testlink[self.testsuite]["testcase"].append(testcase)
# print self.row_flag
if self.temp.getCell(self.excelSheet, self.row_flag, 5) is None and self.temp.getCell(self.excelSheet, self.row_flag + 1, 5) is None:
break
self.temp.close()
# print self.dic_testlink
def content_to_xml(self, key, value=None):
if key == 'step_number' or key == 'execution_type' or key == 'node_order' or key == 'externalid' or key == 'version' or key == 'importance':
return "<" + str(key) + "><![CDATA[" + str(value) + "]]></" + str(key) + ">"
elif key == 'actions' or key == 'expectedresults' or key == 'summary' or key == 'preconditions':
return "<" + str(key) + "><![CDATA[<div> " + str(value) + "</div> ]]></" + str(key) + ">"
elif key == 'keywords':
return '<keywords><keyword name="' + str(value) + '"><notes><![CDATA[ aaaa ]]></notes></keyword></keywords>'
elif key == 'name':
return '<testcase name="' + str(value) + '">'
elif key == 'author':
return '<custom_fields><custom_field><name><![CDATA[设计人员]]></name><value><![CDATA[%s]]></value></custom_field></custom_fields>' % str(value)
else:
return '##########'
def dic_to_xml(self, ExcelFileName, SheetName):
testcase_list = self.dic_testlink[self.testsuite]["testcase"]
for testcase in testcase_list:
for step in testcase["steps"]:
self.content += "<step>"
self.content += self.content_to_xml("step_number", step["step_number"])
self.content += self.content_to_xml("actions", step["actions"])
self.content += self.content_to_xml("expectedresults", step["expectedresults"])
self.content += self.content_to_xml("execution_type", step["execution_type"])
self.content += "</step>"
self.content = "<steps>" + self.content + "</steps>"
self.content = self.content_to_xml("importance", testcase["importance"]) + self.content
self.content = self.content_to_xml("execution_type", testcase["execution_type"]) + self.content
self.content = self.content_to_xml("preconditions", testcase["preconditions"]) + self.content
self.content = self.content_to_xml("summary", testcase["summary"]) + self.content
self.content = self.content_to_xml("version", testcase["version"]) + self.content
self.content = self.content_to_xml("externalid", testcase["externalid"]) + self.content
self.content = self.content_to_xml("node_order", testcase["node_order"]) + self.content
self.content = self.content + self.content_to_xml("keywords", testcase["keywords"])
self.content = self.content_to_xml("name", testcase["name"]) + self.content
self.content = self.content + self.content_to_xml("author", testcase["author"])
self.content = self.content + "</testcase>"
self.content_list.append(self.content)
self.content = ""
self.content = "".join(self.content_list)
self.content = '<testsuite name="' + self.testsuite + '">' + self.content + "</testsuite>"
self.content = '<?xml version="1.0" encoding="UTF-8"?>' + self.content
self.write_to_file(ExcelFileName, SheetName)
def write_to_file(self, ExcelFileName, SheetName):
xmlFileName = ExcelFileName + '_' + SheetName + '.xml'
cp = open(xmlFileName, "w")
cp.write(self.content)
cp.close()
#遍历某个文件目录下的所有文件名称
def iterbrowse(path):
for home, dirs, files in os.walk(path):
for filename in files:
yield os.path.join(home, filename)
if __name__ == "__main__":
print((os.path.abspath('.')))
excellist=[]
#列出当前目录下的所有.xml文件
for fullname in iterbrowse(os.path.abspath('.')):
print(fullname)
obj1=re.compile(r'([\W\w]*)(\.xlsx)#39;)
for m in obj1.finditer(fullname):
print((m.group()))
excellist.append(m.group())
print(excellist)
for fileName in excellist:
fileName=fileName.split('\\')[-1]
file_data = xlrd.open_workbook(fileName)
sheetnum=len(file_data.sheets())
sheetList=[]
for index in range(sheetnum):
sheet_name=file_data.sheets()[index].name
print(sheet_name)
sheetList.append(sheet_name)
print(sheetList)
for sheetName in sheetList:
test = operate(fileName, sheetName)
test.xlsx_to_dic(sheetName)
test.dic_to_xml(fileName, sheetName)
print("Convert success!")
os.system('pause')
**推荐一个「Python自动化测试学习交流群」给大家:
请关注+私信回复:"测试" 就可以免费拿到软件测试学习资料,同时进入群学习交流~~
相关推荐
- jQuery VS AngularJS 你更钟爱哪个?
-
在这一次的Web开发教程中,我会尽力解答有关于jQuery和AngularJS的两个非常常见的问题,即jQuery和AngularJS之间的区别是什么?也就是说jQueryVSAngularJS?...
- Jquery实时校验,指定长度的「负小数」,小数位未满末尾补0
-
在可以输入【负小数】的输入框获取到焦点时,移除千位分隔符,在输入数据时,实时校验输入内容是否正确,失去焦点后,添加千位分隔符格式化数字。同时小数位未满时末尾补0。HTML代码...
- 如何在pbootCMS前台调用自定义表单?pbootCMS自定义调用代码示例
-
要在pbootCMS前台调用自定义表单,您需要在后台创建表单并为其添加字段,然后在前台模板文件中添加相关代码,如提交按钮和表单验证代码。您还可以自定义表单数据的存储位置、添加文件上传字段、日期选择器、...
- 编程技巧:Jquery实时验证,指定长度的「负小数」
-
为了保障【负小数】的正确性,做成了通过Jquery,在用户端,实时验证指定长度的【负小数】的方法。HTML代码<inputtype="text"class="forc...
- 一篇文章带你用jquery mobile设计颜色拾取器
-
【一、项目背景】现实生活中,我们经常会遇到配色的问题,这个时候去百度一下RGB表。而RGB表只提供相对于的颜色的RGB值而没有可以验证的模块。我们可以通过jquerymobile去设计颜色的拾取器...
- 编程技巧:Jquery实时验证,指定长度的「正小数」
-
为了保障【正小数】的正确性,做成了通过Jquery,在用户端,实时验证指定长度的【正小数】的方法。HTML做成方法<inputtype="text"class="fo...
- jquery.validate检查数组全部验证
-
问题:html中有多个name[],每个参数都要进行验证是否为空,这个时候直接用required:true话,不能全部验证,只要这个数组中有一个有值就可以通过的。解决方法使用addmethod...
- Vue进阶(幺叁肆):npm查看包版本信息
-
第一种方式npmviewjqueryversions这种方式可以查看npm服务器上所有的...
- layui中使用lay-verify进行条件校验
-
一、layui的校验很简单,主要有以下步骤:1.在form表单内加上class="layui-form"2.在提交按钮上加上lay-submit3.在想要校验的标签,加上lay-...
- jQuery是什么?如何使用? jquery是什么功能组件
-
jQuery于2006年1月由JohnResig在BarCampNYC首次发布。它目前由TimmyWilson领导,并由一组开发人员维护。jQuery是一个JavaScript库,它简化了客户...
- django框架的表单form的理解和用法-9
-
表单呈现...
- jquery对上传文件的检测判断 jquery实现文件上传
-
总体思路:在前端使用jquery对上传文件做部分初步的判断,验证通过的文件利用ajaxFileUpload上传到服务器端,并将文件的存储路径保存到数据库。<asp:FileUploadI...
- Nodejs之MEAN栈开发(四)-- form验证及图片上传
-
这一节增加推荐图书的提交和删除功能,来学习node的form提交以及node的图片上传功能。开始之前需要源码同学可以先在git上fork:https://github.com/stoneniqiu/R...
- 大数据开发基础之JAVA jquery 大数据java实战
-
上一篇我们讲解了JAVAscript的基础知识、特点及基本语法以及组成及基本用途,本期就给大家带来了JAVAweb的第二个知识点jquery,大数据开发基础之JAVAjquery,这是本篇文章的主要...
- 推荐四个开源的jQuery可视化表单设计器
-
jquery开源在线表单拖拉设计器formBuilder(推荐)jQueryformBuilder是一个开源的WEB在线html表单设计器,开发人员可以通过拖拉实现一个可视化的表单。支持表单常用控件...
你 发表评论:
欢迎- 一周热门
- 最近发表
- 标签列表
-
- mybatis plus (70)
- scheduledtask (71)
- css滚动条 (60)
- java学生成绩管理系统 (59)
- 结构体数组 (69)
- databasemetadata (64)
- javastatic (68)
- jsp实用教程 (53)
- fontawesome (57)
- widget开发 (57)
- vb net教程 (62)
- hibernate 教程 (63)
- case语句 (57)
- svn连接 (74)
- directoryindex (69)
- session timeout (58)
- textbox换行 (67)
- extension_dir (64)
- linearlayout (58)
- vba高级教程 (75)
- iframe用法 (58)
- sqlparameter (59)
- trim函数 (59)
- flex布局 (63)
- contextloaderlistener (56)