base_url: https://api.weixin.qq.com 报错:E httprunner.exceptions.ParamsError: base url missed!
时间: 2024-04-04 08:34:15 浏览: 127
这个错误提示是因为在执行接口请求时没有设置正确的 base_url。你需要在请求中设置正确的 base_url,比如:
```yaml
- name: test API
request:
url: /path/to/api
method: GET
base_url: https://api.weixin.qq.com
```
或者在配置文件中设置全局的 base_url:
```yaml
config:
name: My Test Config
variables:
base_url: https://api.weixin.qq.com
testcases:
- name: test API
request:
url: /path/to/api
method: GET
base_url: $base_url
```
请检查你的请求是否正确设置了 base_url,如果还有问题,请提供更多的信息,以便我能够更好地帮助你。
阅读全文