python—webservice接口测试
Posted 2chun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python—webservice接口测试相关的知识,希望对你有一定的参考价值。
webservice接口:一个url下包含多个接口,返回数据为xml文档
安装模块 pip install suds-jurko
from suds import client url = "https://xxxxxx" cli = client.Client(url=url) # 查看该webservice接口下有包含哪些接口 print(cli) res=cli.service.接口名("参数") # 调接口查看返回结果
以上是关于python—webservice接口测试的主要内容,如果未能解决你的问题,请参考以下文章