06 2021 档案
摘要:# mysql 查找某个表在哪个库 SELECT table_schema FROM information_schema.TABLES WHERE table_name = '表名' 例如:SELECT table_schema FROM information_schema.TABLES WHE
阅读全文
摘要:给标签设置text-align以及line-height属性 如果line-height不加important的话,就不会垂直居中,因为table自带的一些属性会影响我们设置的line-height <style> td, tr,th{ text-align: center; } td{ line-
阅读全文
摘要:sorted对一些可迭代对象进行排序 1.对列表进行排序 b = ['a','c','b'] sort_dict = sorted(b) print(sort_dict) # 按照倒叙排列 sort_dict = sorted(b,reverse=True) print(sort_dict) 2.对
阅读全文
摘要:pytest测试函数标记 1.pytest.mark.{自定义标签},自定义一个mark标签 https://www.cnblogs.com/zhuxibo/p/13921581.html 2. 跳过用例:@pytest.mark.skip @pytest.mark.skipif 描述:skip和s
阅读全文
摘要:https://blog.csdn.net/qq_41838901/article/details/100577141 @allure.severity 标记用例等级 https://blog.csdn.net/qq_38870503/article/details/110764171 https:
阅读全文
摘要:https://www.cnblogs.com/jiahm/p/13865503.html
阅读全文

浙公网安备 33010602011771号