1、如何使用ecplise创建robot工程 new --》 test suite创建套件,得到test cases标识 tasks与testcases一致 variables变量 2、关键字的调用就是函数的调用 3、eclipse字体大小设置 4、RF之语法库、资源和关键字类型、定义、使用 除了b ...
分类:
其他好文 时间:
2019-12-11 09:38:13
阅读次数:
100
1.加入unttest框架 #coding=utf-8 import requests import unittest class TestApi(unittest.TestCase): def setUp(self): self.apiurl = "http://www.xxxxx.com/cus ...
分类:
其他好文 时间:
2019-11-15 15:47:47
阅读次数:
82
以下两种路径实现代码存放在path.py中,查看区别: 以上两种方式,在path.py中执行,print输出均为: 但第一种方式,在run.py中调用path.py中的base_dir属性,查找 "test_*.py" 的根目录就会出现下以报错: 原因: 1、在run.py中调用path.py 中的 ...
分类:
其他好文 时间:
2019-10-01 14:35:50
阅读次数:
632
题面 Ted is a employee of Always Cook Mushroom (ACM). His boss Matt gives him a pack of mushrooms and ask him to grade each mushroom according to its we ...
分类:
其他好文 时间:
2019-09-17 22:43:33
阅读次数:
110
使用 HttpRunner 默认生成的项目是这样的 命令:httprunner --startproject 项目名称 so,根据这个项目的目录结构,使用python解析swagger接口参数,可以快速生成api、testcases、testsuites文件夹中用到的json文件 运行后的目录是这样 ...
分类:
Web程序 时间:
2019-09-13 10:29:44
阅读次数:
244
import os#h获取当前week_9base_dir=os.path.dirname(os.path.dirname(os.path.abspath(__file__)))# print(base_dir)case_file=os.path.join(base_dir,'data','test ...
分类:
其他好文 时间:
2019-05-24 01:04:30
阅读次数:
153
Bholu the Pandit on this New Year wanted to divide his Cuboidal Packaging block into cubes. But he loves uniformity so he asks you to divide it such a ...
分类:
其他好文 时间:
2019-02-02 23:04:03
阅读次数:
154
测试套件文件下的testcase import importlib import sys, time, unittest from gevent import os import os from common import file_util, BSTestRunner from testcases ...
分类:
其他好文 时间:
2018-12-10 15:36:58
阅读次数:
184
HttpRunner 概念 HttpRunner 是一款面向 HTTP(S) 协议的通用测试框架,只需编写维护一份 YAML/JSON 脚本,即可实现自动化测试、性能测试、线上监控、持续集成等多种测试需求。 相关操作 1. 参数提取(extract)和参数引用($var) 2. 公共配置全局化 3. ...
分类:
Web程序 时间:
2018-12-04 11:35:08
阅读次数:
2335
题目链接:http://poj.org/problem?id=3498 题目: Description Somewhere near the south pole, a number of penguins are standing on a number of ice floes. Being s ...
分类:
其他好文 时间:
2017-11-26 11:05:15
阅读次数:
220