接口和自动化测试工具

一、接口测试工具

1. jmeter

  1. jmeter 是一个非常流行的性能测试工具,优点 开源、小巧、易于安装。

2. postman

  1. postman常用于开发中,可将请求的链接直接复制,然后构造自己所想要的入参进而形成想要的链接地址。

3. android studio

  1. android studio常用于开发app,但其实用于生产环境的接口测试也特别方便。操作app也将请求的链接打印到logcat中,通过点击该链接即可打印出json参数字符串

二、自动化测试工具

1. app UI自动化测试框架

  1. 框架 python + atx agent + uiautomator2
  2. 框架 python + appium

uiautomation2连接方式:https://blog.csdn.net/weixin_46932303/article/details/106982649
uiautomator2常见定位报错问题:
https://blog.csdn.net/weixin_46932303/article/details/106985394

2. web页面自动化测试框架

  1. 框架 python + selenium

3. 接口自动化测试框架

  1. 框架 python + requests请求

后续详细补充这些框架,请及时关注。

猜你喜欢

转载自blog.csdn.net/weixin_46932303/article/details/106982074