使用Xmind写用例 使用Python解析Xmind,统计用例个数 代码: from xmindparser import xmind_to_dict import tkinter as tk from tkinter import filedialog class ParseXmind: # 统计文件中用例数 def count_case(self, li): for i in range(len(li)): if li[i].__contains__('topics'): # 带topics…