"""Library components."""fromrobotlibcoreimportkeywordclassLibrary1(object):@keyworddefexample(self):"""Keyword documentation."""pass@keyworddefanother_example(self,arg1,arg2='default'):passdefnot_keyword(self):passclassLibrary2(object):@keyword('Custom name')defthis_name_is_not_used(self):pass...
JavaLibCore是用Java编写的所有Robot Framework测试库的通用核心。 主要优点是 容易扩展和动态 - 只需添加关键字到类路径 核心处理与Robot Framework的通信 - 只需实现关键字 通用功能随时可用(例如关键字的参数计数检查) Note1.0版本支持Spring Library和Composite Library。 动机 Robot Framework支持两种Java库。更简单的...
Javalib Core is a common core for all Robot Framework test libraries written in Java. Usage instructions can be found on the project Wiki:https://github.com/robotframework/JavalibCore/wiki Project jar can be downloaded directly from theMaven Repository ...