python测试webservice接口

Posted 全栈测试笔记

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python测试webservice接口相关的知识,希望对你有一定的参考价值。


1.下载库:https://pypi.python.org/pypi/suds-jurko

2.解压后,进入到解压目录,安装库:python3 setup.py install

3.测试获取手机归属地,先获取方法

from suds.client import Client
url = http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx?wsdl
client = Client(url)
print(client)


python测试webservice接口_xml

4.使用方法getMobileCodeInfo,这里随便输入一个手机号来测试

from suds.client import Client
url = http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx?wsdl
client = Client(url)
# print(client)
res = client.service.getMobileCodeInfo(13888888888)
print(res)


python测试webservice接口_python_02


声明:如有侵权,请联系删除。

============================= 升职加薪 ==========================


以上是关于python测试webservice接口的主要内容,如果未能解决你的问题,请参考以下文章

Python之测试webservice接口

python测试webservice接口

python实现建立soap通信(调用及测试webservice接口)

Python 如何测试WebService接口

没有wsdl,怎么使用soapui测试webservice接口?

客户端怎么测试webservice接口,怎么算测试成功