摘要:
下面关键字全部由 Builtin 库提供,Builtin 为 Robot Framework 标准类库。Builtin库提供常用的关键字 1、log log 关键字就是编程语言里的“print”一样,可以打印任何你想打印的内容。 运行结果: 2、定义变量 通过“Set variable”关键字来定义 阅读全文
摘要:
标准库是Robot Framework可以直接导入使用的库,包含以下几类: Builtin:包含经常需要的关键字。自动导入无需import,因此总是可用的 Dialogs:提供了暂停测试执行和从用户的输入方式。 Collections:提供一组关键词处理Python列表和字典。 OperatingS 阅读全文
摘要:
Collections库是RobotFramework用来处理列表和字典的库,详细可参见官方介绍。 官方地址:http://robotframework.org/robotframework/latest/libraries/Collections.html 1、添加类 在使用之前需要在测试套件(项 阅读全文
摘要:
01、should contain 、 should not contain 与should contain x times should contain ${list_b} 1.0 should not contain ${list_b} 1 should contain x times ${li 阅读全文