博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
httprunner -- 问题
阅读量:5292 次
发布时间:2019-06-14

本文共 1135 字,大约阅读时间需要 3 分钟。

1. C:\Users\ThinkPad>hrun F:\Study\python_code\test0302\httprunner_test\test_httpbin.yml

ERROR    !!!!!!!!!! exception stage: load tests !!!!!!!!!!
RecursionError: maximum recursion depth exceeded while calling a Python object

 

需要切换到 F: 去运行

2. 

- config:         name: httpbin api test      request:              base_url: http://www.httpbin.org    - test:         name: get resoure         request:               url: /get               method: GET         validate:               - eq: [status_code,200]

 

======================================================================
ERROR: test_0000_000 (httprunner.api.TestSequense)
get resoure
----------------------------------------------------------------------
Traceback (most recent call last):
httprunner.exceptions.ParamsError: base url missed!
----------------------------------------------------------------------
Ran 1 test in 0.000s
 
需要修改yaml 如下格式  注意base_url:
- config:
        name: httpbin api test
     request:
             base_url: http://www.httpbin.org   
- test:
        name: get resoure
        request:
              url: /get
              method: GET
        validate:
              - eq: [status_code,200]

转载于:https://www.cnblogs.com/padingdun/p/10647083.html

你可能感兴趣的文章
C#预处理器命令
查看>>
苹果手表:大方向和谷歌一样,硬件分道扬镳
查看>>
ccf 出现次数最多的数
查看>>
单例模式
查看>>
Competing Consumers Pattern (竞争消费者模式)
查看>>
HDUOJ ------1398
查看>>
cf--------(div1)1A. Theatre Square
查看>>
Android面试收集录15 Android Bitmap压缩策略
查看>>
Tomcat 报错的解决方法:The APR based Apache Tomcat Native library which allows optimal
查看>>
最长公共子串问题(LCS)
查看>>
TortoiseSVN is locked in another working copy
查看>>
PHP魔术方法之__call与__callStatic方法
查看>>
ubuntu 安装后的配置
查看>>
Html学习_简易个人网页制作
查看>>
angular中ng-bind指令小案例
查看>>
jqery总结
查看>>
Lodop获取客户端主网卡ip地址是0.0.0.0
查看>>
VSCODE更改文件时,提示:EACCES: permission denied的解决办法(mac电脑系统)
查看>>
web前端之路,js的一些好书(摘自聂微东 )
查看>>
【模板】对拍程序
查看>>