摘要: 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 te 阅读全文
posted @ 2021-09-08 17:04 feifei_tian 阅读(44) 评论(0) 推荐(0) 编辑