摘要:
接口固定数据检验 import json import logging def validate(rlt, expect): """ 结果效验 忽略效验:如 "address":"pass" :param rlt: dict 返回值 :param expect: json 预期值 :return: 阅读全文
摘要:
separators:是分隔符的意思,参数意思分别为不同dict项之间的分隔符和dict项内key和value之间的分隔符,把:和,后面的空格都除去了。 1 2 3 4 5 6 7 8 9 10 11 import json x = {'name':'你猜','age':19,'city':'四川' 阅读全文
摘要:
自定义关键字 使用 *** Keywords *** 设置自定义关键字 *** Settings *** Documentation 用户的登录测试 Library SeleniumLibrary Suite Setup 打开浏览器设置最大化并隐式等待时间为5s Test Setup 导航到首页 T 阅读全文
摘要:
1.Library 导包找不到模块,可以用robot **.robot -P . 2.__init__.robot 不能被其他测试套件导入,也不能使用里面定义的变量,关键字等 阅读全文