Appium定义接口测试
Posted yunli-l
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Appium定义接口测试相关的知识,希望对你有一定的参考价值。
1.Appium如何执行
Appium作为一个服务器,python的脚本代码交给Appium服务器,Appium再去与设备交互。
desired_cap = {}
desired_cap[‘platformName‘] = ‘android‘
desired_cap[‘deviceName‘] = ‘Android Emulator‘
# 指定自动化引擎
# desired_cap[‘automationName‘] = ‘Appium‘
desired_cap[‘automationName‘] = ‘Selendroid‘
desired_cap[‘appPackage‘] = ‘io.selendroid.testapp‘
desired_cap[‘appActivity‘] = "io.selendroid.testapp.HomeScreenActivity"
self.driver = webdriver.Remote(‘http://127.0.0.1:4723/wd/hub‘, desired_cap)
连接真机:PC端安装驱动,USB线连接,手机要打开开发者选项
# pip install requests
import requests
if __name__ == ‘__main__‘:
# 提交一个GET请求,返回一个响应对象
url = ‘http://v.juhe.cn/weather/index‘
url2=‘http://127.0.0.1/test/hello.html‘
resp = requests.get(url=url)
# 状态码
print(‘状态码:‘, resp.status_code)
# 状态码说明
print(‘状态码:‘, resp.reason)
# 响应的头部
headers = resp.headers
print(type(headers))
print(headers)
for k,v in headers.items():
print(‘key:‘, k, ‘, value:‘, v)
# 文本格式的响应正文
body = resp.text
print(type(body))
print(body)
dic={}
dic=body
print(type(dic))
以上是关于Appium定义接口测试的主要内容,如果未能解决你的问题,请参考以下文章