1.xmind文件模板如下所示(最后一个子级为预置条件)


2.excel用例模板


3.获取xmind文件数据并转成字典形式

from xmindparser import xmind_to_dict
#xmind_to_dict可读取xmind文件并转成字典形式展示 def get_xmind(filename1):
"""
获取思维导图数据
:return:
"""
data = xmind_to_dict(filename1)[0]["topic"]
return data if __name__ == '__main__': print(get_xmind(r"E:\集成资料\测试项目\项目资料\用例模板.xmind"))

"D:\Program Files\Python\Python37-32\python.exe" E:/pythonproject/work_pro/complete_case_export.py
{'title': '用例模板', 'topics': [{'title': '登录', 'topics': [{'title': '成功登录', 'makers': ['priority-1'], 'topics': [{'title': '点击账号输入框输入账号', 'topics': [{'title': '点击密码输入框输入密码', 'topics': [{'title': '点击提交菜单', 'topics': [{'title': '登录成功,进入到系统首页'}]}]}]}]}, {'title': '账号为空', 'makers': ['priority-3'], 'topics': [{'title': '不输入账号\r\n点击密码输入框输入密码\r\n点击提交菜单', 'topics': [{'title': '登录失败,提示账号密码错误'}]}]}, {'title': '密码为空', 'makers': ['priority-3'], 'topics': [{'title': '点击账号输入框输入账号\r\n不输入密码\r\n点击提交菜单', 'topics': [{'title': '登录失败,提示账号密码错误'}]}]}, {'title': '账号错误', 'makers': ['priority-3'], 'topics': [{'title': '点击账号输入框输入错误的账号', 'topics': [{'title': '点击密码输入框输入密码', 'topics': [{'title': '点击提交菜单', 'topics': [{'title': '登录失败,提示账号密码错误'}]}]}]}]}, {'title': '密码错误', 'makers': ['priority-3'], 'topics': [{'title': '点击账号输入框输入账号', 'topics': [{'title': '点击密码输入框输入错误的密码', 'topics': [{'title': '点击提交菜单', 'topics': [{'title': '登录失败,提示账号密码错误'}]}]}]}]}]}, {'title': '设备管理', 'topics': [{'title': '设备列表', 'topics': [{'title': '列表展示', 'makers': ['priority-1'], 'topics': [{'title': '查看列表数据展示是否与实际一致', 'topics': [{'title': '列表字段包含:设备名称等'}]}]}, {'title': '组合搜索', 'makers': ['priority-2'], 'topics': [{'title': '输入设备名称、设备编号、寄存器号搜索', 'topics': [{'title': '搜索出的结果数据同时满足以上条件'}]}]}]}, {'title': '设备新增', 'topics': [{'title': '成功新增设备', 'makers': ['priority-1'], 'topics': [{'title': '查看列表数据展示是否与实际一致', 'topics': [{'title': '列表字段包含:设备名称等'}]}]}, {'title': '必填项不输入时新增', 'makers': ['priority-4'], 'topics': [{'title': '输入设备名称、设备编号、寄存器号搜索', 'topics': [{'title': '搜索出的结果数据同时满足以上条件'}]}]}]}, {'title': '设备删除', 'topics': [{'title': '删除不在使用设备', 'makers': ['priority-1'], 'topics': [{'title': '查看列表数据展示是否与实际一致', 'topics': [{'title': '列表字段包含:设备名称等'}]}]}, {'title': '删除已在使用的设备', 'makers': ['priority-3'], 'topics': [{'title': '输入设备名称、设备编号、寄存器号搜索', 'topics': [{'title': '搜索出的结果数据同时满足以上条件'}]}]}]}, {'title': '设备编辑', 'topics': [{'title': '成功编辑设备', 'makers': ['priority-1'], 'topics': [{'title': '查看列表数据展示是否与实际一致', 'topics': [{'title': '列表字段包含:设备名称等'}]}]}, {'title': '编辑正在使用的设备', 'makers': ['priority-3'], 'topics': [{'title': '输入设备名称、设备编号、寄存器号搜索', 'topics': [{'title': '搜索出的结果数据同时满足以上条件'}]}]}]}]}]}

Process finished with exit code 0

4.用代码实现excel用例模板

    def __init__(self, filename1, filename2):
"""
数据初始化
:param filename:
:param data:
"""
self.str1 = ""
self.str2 = ""
self.step = ""
self.i = 1
self.k = 1
self.data = get_xmind(filename1) if os.path.isfile(filename2):
self.filename = filename2
else:
self.filename = filename2 + "\\" + self.data["title"] + ".xlsx" self.wb = openpyxl.Workbook(self.filename)
for s in self.data['topics']:
self.wb.create_sheet(s["title"])
self.wb.save(self.filename)
self.title = ["所属模块", "相关研发需求", "用例标题", "前置条件", "步骤", "预期", "关键词", "优先级", "用例类型", "适用阶段",
"用例状态"]
self.work = openpyxl.load_workbook(self.filename)
self.sheetnames = self.work.sheetnames
for name in self.sheetnames:
self.sheet = self.work[name] for i in range(1, len(self.title) + 1):
self.sheet.cell(1, i).value = self.title[i - 1] # 写入表头
self.sheet.cell(1, i).font = Font(bold=True, color=colors.BLACK) # 将表头字体设置为黑色,加粗
self.sheet.cell(1, i).fill = PatternFill(fill_type="solid", fgColor="003399") # 将表头填充颜色
row_name = get_column_letter(i) # 将数字编号转为字母编号
if i in [3, 5, 6]:
self.sheet.column_dimensions[row_name].width = 40 # 设置宽度
else:
self.sheet.column_dimensions[row_name].width = 20 self.work.save(self.filename)

5.将获取的数据按规则写入excel

    def set_value(self, infos):
"""
获取用例并写入excel
:return:
"""
global work , sheet, title, lever
for info in infos["topics"]:
if info["title"] in self.sheetnames:
self.i = 1
workbook = self.open_sheet(info["title"])
sheet = workbook[1]
work = workbook[0] if info.get("topics"):
if info.get("makers"):
self.k = 0
title = info["title"]
lever = info["makers"][0].split("-")[1]
self.str1 = infos["title"]
else:
if self.k == 0:
self.step += info["title"] + "\n"
if isinstance(info["topics"], list):
self.set_value(info)
else:
self.i += 1
data = "【" + self.str1 + "】" + title
sheet.cell(self.i, 3).value = data
sheet.cell(self.i, 5).value = self.step.rstrip("\n")
sheet.cell(self.i, 6).value = info["title"]
sheet.cell(self.i, 8).value = lever
sheet.cell(self.i, 9).value = "功能测试"
sheet.cell(self.i, 10).value = "功能测试阶段"
sheet.cell(self.i, 11).value = "正常"
sheet.cell(self.i, 3).alignment = Alignment(wrapText=True)
sheet.cell(self.i, 5).alignment = Alignment(wrapText=True)
sheet.cell(self.i, 6).alignment = Alignment(wrapText=True)
self.step = ""
self.k += 1
work.save(self.filename)

6.为了方便传参操作,引入easygui,通过界面传入

filename1 = g.fileopenbox(msg="请选择需要转换的xmind文件", title="文件", filetypes=["*.xmind"], multiple=False, default=r"E:\\")
filename2 = g.diropenbox(msg="请选择保存的文件路径", title="文件", default=r"E:\\")

7.完整实现代码

import openpyxl
from openpyxl.styles import Font
from openpyxl.styles import colors
from openpyxl.styles import PatternFill
from openpyxl.styles import Alignment
from openpyxl.utils import get_column_letter # 将数字转为字母
from xmindparser import xmind_to_dict
import os
import easygui as g def get_xmind(filename1):
"""
获取思维导图数据
:return:
"""
data = xmind_to_dict(filename1)[0]["topic"]
return data class CaseXmind():
"""
思维导图转用例
"""
def __init__(self, filename1, filename2):
"""
数据初始化
:param filename:
:param data:
"""
self.str1 = ""
self.str2 = ""
self.step = ""
self.i = 1
self.k = 1
self.data = get_xmind(filename1) if os.path.isfile(filename2):
self.filename = filename2
else:
self.filename = filename2 + "\\" + self.data["title"] + ".xlsx" self.wb = openpyxl.Workbook(self.filename)
for s in self.data['topics']:
self.wb.create_sheet(s["title"])
self.wb.save(self.filename)
self.title = ["所属模块", "相关研发需求", "用例标题", "前置条件", "步骤", "预期", "关键词", "优先级", "用例类型", "适用阶段",
"用例状态"]
self.work = openpyxl.load_workbook(self.filename)
self.sheetnames = self.work.sheetnames
for name in self.sheetnames:
self.sheet = self.work[name] for i in range(1, len(self.title) + 1):
self.sheet.cell(1, i).value = self.title[i - 1] # 写入表头
self.sheet.cell(1, i).font = Font(bold=True, color=colors.BLACK) # 将表头字体设置为黑色,加粗
self.sheet.cell(1, i).fill = PatternFill(fill_type="solid", fgColor="003399") # 将表头填充颜色
row_name = get_column_letter(i) # 将数字编号转为字母编号
if i in [3, 5, 6]:
self.sheet.column_dimensions[row_name].width = 40 # 设置宽度
else:
self.sheet.column_dimensions[row_name].width = 20 self.work.save(self.filename) def open_sheet(self, name):
"""
打开指定工作表
:param name:
:return:
"""
work = openpyxl.load_workbook(self.filename)
sheet = work[name]
return work, sheet def set_value(self, infos):
"""
获取用例并写入excel
:return:
"""
global work , sheet, title, lever
for info in infos["topics"]:
if info["title"] in self.sheetnames:
self.i = 1
workbook = self.open_sheet(info["title"])
sheet = workbook[1]
work = workbook[0] if info.get("topics"):
if info.get("makers"):
self.k = 0
title = info["title"]
lever = info["makers"][0].split("-")[1]
self.str1 = infos["title"]
else:
if self.k == 0:
self.step += info["title"] + "\n"
if isinstance(info["topics"], list):
self.set_value(info)
else:
self.i += 1
data = "【" + self.str1 + "】" + title
sheet.cell(self.i, 3).value = data
sheet.cell(self.i, 5).value = self.step.rstrip("\n")
sheet.cell(self.i, 6).value = info["title"]
sheet.cell(self.i, 8).value = lever
sheet.cell(self.i, 9).value = "功能测试"
sheet.cell(self.i, 10).value = "功能测试阶段"
sheet.cell(self.i, 11).value = "正常"
sheet.cell(self.i, 3).alignment = Alignment(wrapText=True)
sheet.cell(self.i, 5).alignment = Alignment(wrapText=True)
sheet.cell(self.i, 6).alignment = Alignment(wrapText=True)
self.step = ""
self.k += 1
work.save(self.filename) if __name__ == '__main__': filename1 = g.fileopenbox(msg="请选择需要转换的xmind文件", title="文件", filetypes=["*.xmind"], multiple=False, default=r"E:\\")
filename2 = g.diropenbox(msg="请选择保存的文件路径", title="文件", default=r"E:\\") CaseXmind(filename1, filename2).set_value(get_xmind(filename1))

所属模块、相关研发需求、预置条件等字段都可以内置在xmind,只需要通过其他标签区分就行。

python 之将xmind转为excel用例文件的更多相关文章

  1. Python中,添加写入数据到已经存在的Excel的xls文件,即打开excel文件,写入新数据

    背景 Python中,想要打开已经存在的excel的xls文件,然后在最后新的一行的数据. 折腾过程 1.找到了参考资料: writing to existing workbook using xlw ...

  2. 使用Python将xmind脑图转成excel用例(一)

    最近接到一个领导需求,将xmind脑图直接转成可以导入的excel用例,并且转换成gui可执行的exe文件,方便他人使用. 因为对Python比较熟悉,所以就想使用Python来实现这个功能,先理一下 ...

  3. Python实现XMind测试用例快速转Excel用例

    转载请注明出处️ 作者:测试蔡坨坨 原文链接:caituotuo.top/c2d10f21.html 你好,我是测试蔡坨坨. 今天分享一个Python编写的小工具,实现XMind测试用例转Excel用 ...

  4. python xmind转Excel(puppet洛洛原创)

    需求:将xmind文件转为Excel文件,并添加UI界面操作以降低操作难度. 这个需求一句话就讲清楚了,但实际上还需要做很多工作: 1,了解Xmind文件结构 2,提取Xmind文件分支内容(重点) ...

  5. 【用例篇】Xmind转为csv 导入禅道

    用过禅道的都知道,用例维护实在是太不方便了,有人推荐了一种方法,用Xmind先编写用例(思路比较清晰),写好之后借助工具(xmind2testcase)将用例转为CSV格式,之后再导入禅道 参考资料: ...

  6. 小白学 Python(24):Excel 基础操作(下)

    人生苦短,我选Python 前文传送门 小白学 Python(1):开篇 小白学 Python(2):基础数据类型(上) 小白学 Python(3):基础数据类型(下) 小白学 Python(4):变 ...

  7. C# 将PDF转为Excel

    通常,PDF格式的文档能支持的编辑功能不如office文档多,针对PDF文档里面有表格数据的,如果想要编辑表格里面的数据,可以将该PDF文档转为Excel格式,然后编辑.本文,将以C#代码为例,介绍如 ...

  8. python+requests+yaml实现接口自动化用例

    前言:最近也思考了一下怎么做接口自动化,以下内容属于自己目前阶段所学习到的内容,也逐渐投入自己实际工作中,把最近的学习新得跟大家分享下,话不多说,切入正题. 对接口自动化测试用例的思考:接口测试大多测 ...

  9. python使用xlrd模块读写Excel文件的方法

    本文实例讲述了python使用xlrd模块读写Excel文件的方法.分享给大家供大家参考.具体如下: 一.安装xlrd模块 到python官网下载http://pypi.python.org/pypi ...

  10. 【Python】 更棒的Excel操作模块xlwings

    [xlwings] 说到Python操作Excel,有好多模块都可以支持这个工作.比如最底层的win32模块不仅可以操作Excel,还可以操作其他一众windows的软件. 其他的比较熟悉的有xlrd ...

随机推荐

  1. WPF 的内部世界(控件与布局)

    目录 一.控件与布局 前言 为什么要写WPF呢? 我一开始算是比较抵触WPF的,因为用的人少吗.感觉都是窗体应用能和Winform有什么区别.可是我错了,非常感谢我的讲师,给我推荐刘铁猛的<深入 ...

  2. Java程序设计(四)作业

    要求:定义一个Java项目,项目名为"学号_姓名_题号",如:"20181101_张三_1",完成后将项目复制到桌面并压缩提交到邮箱82794085@qq.co ...

  3. OnionArch - 采用DDD+CQRS+.Net 7.0实现的洋葱架构

    博主最近失业在家,找工作之余,看了一些关于洋葱(整洁)架构的资料和项目,有感而发,自己动手写了个洋葱架构解决方案,起名叫OnionArch.基于最新的.Net 7.0 RC1, 数据库采用Postgr ...

  4. sql语句优化小结

    sql的优化技巧. 1.用join进行子查询的优化. 低效的子查询 select a.user_name,a.over,(select over from user2 b where a.user_n ...

  5. .NET平台下一个你不知道的框架,我只想说两个字:“牛逼”

    框架内容 零度框架是一套基于微服务和领域模型驱动设计的企业级快速开发框架,基于微软 .NET 6 + React 最新技术栈构建,容器化微服务最佳实践,零度框架的搭建以开发简单,多屏体验,前后端分离, ...

  6. RAID5 IO处理之replace代码详解

    1 作用 从字面意思理解,replacement即是替换.我们知道硬盘都有一定的使用寿命,可以在硬盘失效之前通过该功能将就盘的数据迁移至新盘.因为replacement的流程是从旧盘中读出数据直接写入 ...

  7. Windows下自动云备份思源笔记到Gitee

    前言 思源笔记是一款本地笔记为主的软件,其目前提供了148元/year的付费同步功能,但对于21世纪中国难民而言还是太贵啦. 条件允许的同学还是使用官方的同步,支持下作者. 所以,就在思考有没有白嫖的 ...

  8. 安装zabbix-agent2之ansible-playbook

    zabbix被监控端安装zabbix-agent2之ansible-playbook --- - name: install agent hosts: all vars: server_host: & ...

  9. webpack 配置echarts 按需加载

    引入babel-plugin-equire插件,方便使用.yarn add babel-plugin-equire -D 在.babelrc文件中的配置 { "presets": ...

  10. Java环境搭建(推荐jdk8)

    本人使用的Windows10操作系统 1.Jdk8下载和安装 下载地址:https://www.oracle.com/cn/java/technologies/javase/javase-jdk8-d ...