随笔分类 -  xml相关

摘要:基本 from robot.api import SuiteVisitor class TestStatusChecker(SuiteVisitor): def __init__(self, *args): pass def visit_test(self, test): if 'PASS' in 阅读全文
posted @ 2021-07-02 11:03 该显示昵称已被使用了 阅读(169) 评论(0) 推荐(0)
摘要:https://zhuanlan.zhihu.com/p/78329319 https://www.cnblogs.com/miniren/p/5091744.html Python有三种方法解析XML,分别是SAX、DOM和ElementTree: SAX:Python 标准库包含 SAX 解析器 阅读全文
posted @ 2021-05-28 17:27 该显示昵称已被使用了 阅读(290) 评论(0) 推荐(0)
摘要:python解析XML,HTML # 1 from lxml import etree # 2 import xml.dom.minidom # 3 bs4 # 4 import xmltodict python读取文件共享 ''' https://pypi.org/project/smbproto 阅读全文
posted @ 2020-07-08 10:39 该显示昵称已被使用了 阅读(205) 评论(0) 推荐(0)