摘要: https://blog.csdn.net/whatday/article/details/106886621 阅读全文
posted @ 2024-11-13 10:18 chuangzhou 阅读(3) 评论(0) 推荐(0) 编辑
摘要: https://geek-docs.com/python/python-ask-answer/695_python_asyncio_event_loop_is_closed_when_getting_loop.html 阅读全文
posted @ 2024-11-05 09:10 chuangzhou 阅读(3) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/141590681 https://learn.lianglianglee.com/专栏/微服务质量保障 20 讲-完/12 测试技术篇:如何提升测试效率?.md 阅读全文
posted @ 2024-10-21 18:59 chuangzhou 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 目录引言大数据应用测试的介绍大数据应用测试要解决的问题是什么相关性评估 引言 工作中接触到电商搜索引擎的测试,没有一个同一的方法论,往往都是按者需求走,因此补充了一下这方面的知识。以下内容摘抄自: 《阿里巴巴测试之道》 信息检索与ES的区别: 信息检索(Information Retrieval,简 阅读全文
posted @ 2024-08-29 22:23 chuangzhou 阅读(12) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/yurui321/p/14890108.html https://blog.csdn.net/zeroJustGG/article/details/90639844?spm=1001.2101.3001.6650.2&utm_medium=distri 阅读全文
posted @ 2024-08-19 16:19 chuangzhou 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 导致后端在处理的时候出现一些错误 制造: 在 word 里:ctrl+shift+space https://zhuanlan.zhihu.com/p/478889820 阅读全文
posted @ 2024-08-07 10:04 chuangzhou 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 哈希表 v1 package com.datastructure.hashtable; public class HashTable { //节点类 static class Entry { int hash; Object key; Object value; Entry next; public 阅读全文
posted @ 2024-07-28 14:41 chuangzhou 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 目录fixture 的并列与嵌套调用并列使用fixture嵌套调用fixture嵌套调用获取 fixture 返回值 fixture 的并列与嵌套调用 常用场景:相互依赖的fixture 可能是多个,或提前准备的数据也可能是多个,或数据准备也可能有依赖或先后 并列使用fixture @pytest. 阅读全文
posted @ 2024-06-25 21:00 chuangzhou 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 报错: E playwright._impl._errors.Error: Locator.set_checked: Error: strict mode violation: locator("//td[@class=\"el-table_1_column_1 is-center el-table 阅读全文
posted @ 2024-06-21 14:26 chuangzhou 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 目录入门处理弹窗frame 入门 1.安装 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple playwright # 安装浏览器驱动 playwright install from time import sleep from play 阅读全文
posted @ 2024-06-19 15:27 chuangzhou 阅读(17) 评论(0) 推荐(0) 编辑