随笔分类 -  robot

摘要:https://robotframework-userguide-cn.readthedocs.io/zh_CN/latest/ExtendingRobotFramework/ListenerInterface.html 阅读全文
posted @ 2021-10-20 13:13 该显示昵称已被使用了 阅读(49) 评论(0) 推荐(0)
摘要:基本 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 该显示昵称已被使用了 阅读(159) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/apple2016/p/7525845.html cmd rebot -d . output.xml python # coding:utf-8 from robot.api import ExecutionResult from robot impo 阅读全文
posted @ 2021-06-23 11:29 该显示昵称已被使用了 阅读(249) 评论(0) 推荐(0)
摘要:# 类的定义 class RobotObjectDict(dict): def __getattr__(self, attr): value = self[str(attr).upper()] return RobotObjectDict(value) if isinstance(value, di 阅读全文
posted @ 2021-02-02 18:10 该显示昵称已被使用了 阅读(62) 评论(0) 推荐(0)