翼度科技»论坛 编程开发 python 查看内容

【Playwright+Python】系列教程(七)使用Playwright进行API接口测试

9

主题

9

帖子

27

积分

新手上路

Rank: 1

积分
27
playwright也是可以做接口测试的,但个人觉得还是没有requests库强大,但和selenium相比的话,略胜一筹,毕竟支持API登录,也就是说可以不用交互直接调用接口操作了。
怎么用

既然是API的测试了,那肯定就别搞UI自动化那套,搞什么浏览器交互,那叫啥API测试,纯属扯淡。
也不像有些博主更懒,直接贴的官方例子,难道我用你再帮我复制一次?
来下面,说明下使用playwright如何做API测试?
实例化request对象

示例代码如下:
  1. playwright.request.new_context()
复制代码
没错,实例化后,就是调API,看吧,其实也不是很难是不是?
实战举栗

这里用我自己写的学生管理系统的部分接口来做演示,并对部分常用api做以说明,代码示例都是用同步的写法。
1、GET请求

示例如下:
  1. def testQueryStudent(playwright: Playwright):
  2.     """
  3.     查询学生
  4.     """
  5.     url = 'http://localhost:8090/studentFindById'
  6.     param = {
  7.         'id': 105
  8.     }
  9.     request_context = playwright.request.new_context()
  10.     response = request_context.get(url=url, params=param)
  11.     assert response.ok
  12.     assert response.json()
  13.     print('\n', response.json())
复制代码
效果:

2、POST请求

示例代码:
  1. def testAddStudent(playwright: Playwright):
  2.     """
  3.     新增学生
  4.     :return:
  5.     """
  6.     url = 'http://localhost:8090/studentAdd'
  7.     request_body = {
  8.         "className": "banji",
  9.         "courseName": "wuli",
  10.         "email": "ales@qq.com",
  11.         "name": "ales",
  12.         "score": 70,
  13.         "sex": "boy",
  14.         "studentId": "92908290"
  15.     }
  16.     header = {"Content-Type": "application/json"}
  17.     request_context = playwright.request.new_context()
  18.     response = request_context.post(url=url, headers=header, data=request_body)
  19.     assert response.ok
  20.     assert response.json()
  21.     print('\n', response.json())
复制代码
效果:

3、PUT请求

示例代码:
  1. def testUpdateStudents(playwright: Playwright):
  2.     """
  3.     修改学生
  4.     """
  5.     url = 'http://localhost:8090/studentUpdate/100'
  6.     param = {
  7.         'studentId': "id" + str(100),
  8.         'name': "name" + str(100),
  9.         'score': 100,
  10.         "sex": "girl",
  11.         "className": "class" + str(100),
  12.         "courseName": "course" + str(100),
  13.         "email": str(100) + "email@qq.com"
  14.     }
  15.     request_context = playwright.request.new_context()
  16.     response = request_context.put(url=url, form=param)
  17.     assert response.ok
  18.     assert response.json()
  19.     print('\n', response.json())
复制代码
效果:

4、DELETE请求

示例代码:
  1. def testDeleteStudents(playwright: Playwright):
  2.     """
  3.     删除学生
  4.     """
  5.     url = 'http://localhost:8090/studentDelete/' + str(105)
  6.     request_context = playwright.request.new_context()
  7.     response = request_context.delete(url=url)
  8.     assert response.ok
  9.     assert response.json()
  10.     print('\n', response.json())
复制代码
效果:

5、上传文件

这个是特例吧,按照官方给的方法,我真的是死活也不能成功,一直都是提示上上传文件不能为空,也不到为啥,结果我用了一个替代方案,就是抓包模拟的构造入参,才成功,也是曲折呀。
示例代码:
  1. def test_upload_file(playwright: Playwright):
  2.     '''
  3.     上传文件
  4.     :param playwright:
  5.     :return:
  6.     '''
  7.     # 创建请求上下文
  8.     request_context = playwright.request.new_context()
  9.     # 定义上传文件的URL
  10.     upload_url = "http://localhost:8090/fileUpload"
  11.     # 文件路径
  12.     file_path = "d:/demo.txt"
  13.     # 获取文件名和MIME类型
  14.     filename = file_path.split('/')[-1]
  15.     mime_type, _ = mimetypes.guess_type(file_path)
  16.     if not mime_type:
  17.         mime_type = 'application/octet-stream'
  18.     # 读取文件内容
  19.     with open(file_path, 'rb') as file:
  20.         file_content = file.read()
  21.     # 构造multipart/form-data的边界字符串
  22.     boundary = '---------------------' + str(random.randint(1e28, 1e29 - 1))
  23.     # 构造请求体
  24.     body = (
  25.         f'--{boundary}\r\n'
  26.         f'Content-Disposition: form-data; name="file"; filename="{filename}"\r\n'
  27.         f'Content-Type: {mime_type}\r\n\r\n'
  28.         f'{file_content.decode("utf-8") if mime_type.startswith("text/") else file_content.hex()}'
  29.         f'\r\n--{boundary}--\r\n'
  30.     ).encode('utf-8')
  31.     # 设置请求头
  32.     headers = {
  33.         'Content-Type': f'multipart/form-data; boundary={boundary}',
  34.     }
  35.     # 发起POST请求
  36.     response = request_context.post(upload_url, data=body, headers=headers)
  37.     # 检查响应
  38.     assert response.status == 200, f"Upload failed with status: {response.status}"
  39.     assert response.ok
  40.     assert response.json()
  41.     print('\n', response.json())
复制代码
效果:

官方写法:
  1. # 读取文件内容
  2. with open(file_path, 'rb') as file:
  3.     file_content = file.read()
  4.     response = request_context.post(upload_url, multipart={
  5.         "fileField": {
  6.             "name": "demo.txt",
  7.             "mimeType": "text/plain",
  8.             "buffer": file_content,
  9.         }
  10.     })
  11. print('\n', response.json())
复制代码
效果:

官方写法,我不知道为啥,有大侠知道,还请帮忙给个例子,小弟不胜感激呀!
写在最后

我还是觉得微软很强呀,这套框架确实比selenium略胜一筹,综合来看。
终于有时间了,来更新一篇,感觉文章对你有用,转发留言都可,谢谢!
对了,那个上传文件的为啥不行,还请前辈们帮看一下呀!

来源:https://www.cnblogs.com/longronglang/p/18344122
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具