摘要: #!/usr/bin/python # -*- coding: utf-8 -*- from selenium import webdriver import xlwt,csv,time import os # os.remove('51job爬虫.xls') startup_Options = w 阅读全文
posted @ 2021-07-03 22:36 Avicii_2018 阅读(147) 评论(0) 推荐(0) 编辑
摘要: **kwargs 和 *args 区别 是Python中用于处理可变数量参数的两种机制,它们的主要区别在于参数的类型和处理方式。 在Python中,函数的参数分为三种类型:关键字参数(key arguments)、位置参数(positional arguments)和默认参数(default arg 阅读全文
posted @ 2024-12-22 21:16 Avicii_2018 阅读(5) 评论(0) 推荐(0) 编辑
摘要: python 查询接口耗时_mob64ca12e8a030的技术博客_51CTO博客 阅读全文
posted @ 2024-01-23 22:47 Avicii_2018 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 读取excel数据 from xToolkit import xfile test_data = xfile.read("接口测试用例_BYMS.xlsx").excel_to_dict(sheet=0) print(test_data) 结果: [{'用例描述': '用户登录-正确的用户名和密码' 阅读全文
posted @ 2024-01-14 00:40 Avicii_2018 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 1 什么是xToolkit库 库xToolkit的中文名字叫X工具集.是python内置库的一个扩展库.把python的datetime,string,list,dist,xthread等数据结构进行了系统库功能的扩展。 安装方法(利用阿里云的pypi源安装会比默认的pypi快很多): pip in 阅读全文
posted @ 2024-01-13 23:50 Avicii_2018 阅读(177) 评论(0) 推荐(0) 编辑
摘要: select * from t2 where teacher != '吴老师' 可以看出: where a ! = b 时 , 如果a中存在null , 则不会查出来null的数据. 且只会查出 非null 且 !=b 数据 select * from t2 where teacher != '吴老 阅读全文
posted @ 2024-01-06 00:03 Avicii_2018 阅读(18) 评论(0) 推荐(0) 编辑