pytest 接口测试框架学习

import requests
 
class TestDemo:
    def test_get(self):
        r = requests.get("https://www.baidu.com/")
        print(r.status_code)
        assert r.status_code == 200
 
    def test_query(self):
        payload = {
            "level": 1,
            "name": "xuefeifei"
        }
        r = requests.get("https://httpbin.testing-studio.com/get", params=payload)
        print(r.text)
        assert r.status_code == 200
 
    def test_post_form(self):
        payload = {
            "level": 1,
            "name": "xuefeifei"
        }
        r = requests.post("https://httpbin.testing-studio.com/post", data=payload)
        print(r.text)
        assert r.status_code == 200def test_post_json(self):
payload = {
"level": 1,
"name": "xuefeifei"
}
r = requests.post("https://httpbin.testing-studio.com/post", json=payload)
print(r.json())
assert r.json()["json"]["level"] == 1

  使用pycharm

新建一个project, 进入preferences,添加 pytest,和requests

pytest 接口测试框架学习_第1张图片

 

pytest 接口测试框架学习_第2张图片

 

 

pytest 接口测试框架学习_第3张图片


资料获取方法

【留言777】

各位想获取源码等教程资料的朋友请点赞 + 评论 + 收藏,三连!

三连之后我会在评论区挨个私信发给你们~

你可能感兴趣的:(软件测试,pytest,自动化测试框架,pytest,学习,python,程序人生,软件测试,软件测试工程师)