代码改变世界

阅读排行榜

测试开发HTTP请求过程(一)

2022-10-21 17:04 by 清风软件测试开发, 180 阅读, 收藏,
摘要: 测试开发HTTP请求过程 HTTP请求过程: 首先要熟悉http请求过程: 1,服务端建立socket监听 2,客户端发送http请求 3,客户端与服务端建立socket连接 4,客户端 tcp三次握手 >服务端 5,客户端与服务端成功建立socket连接 6,客户端 数据包 >服务端 7,服务端 阅读全文

消息队列

2019-09-03 23:23 by 清风软件测试开发, 175 阅读, 收藏,
摘要: https://blog.csdn.net/yue_2018/article/details/89305275 https://blog.csdn.net/ntotl/article/details/72765713 https://blog.csdn.net/qq_36236890/article 阅读全文

python 多线程

2020-11-21 17:13 by 清风软件测试开发, 174 阅读, 收藏,
摘要: python 多线程 import threading from time import ctime,sleep def eat(sth): for i in range(2): print("I am eating %s. %s" %(sth,ctime())) sleep(1) def drin 阅读全文

linux常用命令

2020-05-06 18:23 by 清风软件测试开发, 169 阅读, 收藏,
摘要: linux常用命令 阅读全文

pytest数据驱动 pandas

2022-11-01 16:35 by 清风软件测试开发, 163 阅读, 收藏,
摘要: pytest数据驱动 pandas 主要过程:用pandas读取excel里面的数据,然后进行百度查询,并断言 pf = pd.read_excel('data_py.xlsx', usecols=[1,2]) print(pf.values) 输出: [[‘听妈妈的话’ ‘周杰伦’][‘遇见’ ‘ 阅读全文
上一页 1 ··· 143 144 145 146 147 148 149 150 151 ··· 155 下一页