首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

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

    () print('\n', response.json()) 效果: 2、POST请求 示例代码: def testAddStudent(playwright: Playwright):...() print('\n', response.json()) 效果: 3、PUT请求 示例代码: def testUpdateStudents(playwright: Playwright)...() print('\n', response.json()) 效果: 4、DELETE请求 示例代码: def testDeleteStudents(playwright: Playwright...() print('\n', response.json()) 效果: 5、上传文件 这个是特例吧,按照官方给的方法,我真的是死活也不能成功,一直都是提示上上传文件不能为空,也不到为啥,结果我用了一个替代方案...() print('\n', response.json()) 效果: 官方写法: # 读取文件内容 with open(file_path, 'rb') as file: file_content

    32610

    Python爬虫神器requests库的使用

    get')# 打印响应状态码print('响应状态码:', response.status_code) # 状态码 200 表示请求成功# 打印返回的 JSON 数据print('返回的数据:', response.json...httpbin.org/post', json=data)# 打印响应状态码print('响应状态码:', response.status_code)# 打印返回的数据print('返回的数据:', response.json...httpbin.org/get', headers=headers)# 打印响应状态码和返回数据print('响应状态码:', response.status_code)print('返回的数据:', response.json...://httpbin.org/get', params=params)# 打印响应状态码和数据print('响应状态码:', response.status_code)print('返回的数据:', response.json...数据:', response.json())except requests.exceptions.HTTPError as err: print('请求失败!错误信息:', err)5.

    9700
    领券