摘要: https://zhuanlan.zhihu.com/p/526837726 阅读全文
posted @ 2022-09-26 12:28 bamboo233 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 最新版的docker desktop可以支持win10家庭版(win10 1903以上即可) 官网下载:https://docs.docker.com/docker-for-windows/install-windows-home/ 不出意外很慢很慢,但是百度云都是旧版本,不支持win10家庭版,因 阅读全文
posted @ 2021-01-04 23:53 bamboo233 阅读(533) 评论(0) 推荐(0) 编辑
摘要: from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_i 阅读全文
posted @ 2020-06-28 08:24 bamboo233 阅读(322) 评论(0) 推荐(0) 编辑
摘要: / 相对路径 // 绝对路径 定位节点: /html/body/form/input 查找所有input节点元素 //input 查找所有input节点元素 使用通配符选择未知的元素: //form/ 查找form节点下的所有元素 //* 查找所有元素 //*/input 查找所有input元素 选 阅读全文
posted @ 2020-06-02 14:09 bamboo233 阅读(278) 评论(0) 推荐(0) 编辑
摘要: https://tableconvert.com/?output=asp 文件导入功能不好用,直接粘贴表格内容(加表头),然后无敌好用!可转化各种格式。 看看这个SQL语句,感动了 阅读全文
posted @ 2020-06-02 14:04 bamboo233 阅读(717) 评论(0) 推荐(0) 编辑
摘要: 贪婪截取(abcABC123edf123,左边截取abc,右边截取123,得到ABC123edf) 截取字符串 [Arguments] ${string} ${left} ${right} ${string} Fetch From Right ${string} ${left} ${newstrin 阅读全文
posted @ 2019-10-24 19:59 bamboo233 阅读(2484) 评论(0) 推荐(0) 编辑
摘要: 一个很简单的场景:GET方法获取某URL的body信息,直接读取即可,不做处理 Test Cases GetToken Create HTTP Context host=192.168.0.1:8080 scheme=http GET /cookies.txt ${token} Get Respon 阅读全文
posted @ 2019-10-24 19:57 bamboo233 阅读(328) 评论(0) 推荐(0) 编辑
摘要: Test Cases testGetTime @{time}= Get Time year month day hour min sec ${sDate}= Catenate SEPARATOR= @{time}[0] @{time}[1] @{time}[2] ${sTime}= Catenate 阅读全文
posted @ 2019-10-24 19:55 bamboo233 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 1.创建shell脚本: !/bin/bash apphome=/apppath if [ ! d $apphome ]; then exit 0 fi cp $apphome/app.log $apphome/app.log. echo "" $apphome/app.log 运行后: 自动将当前 阅读全文
posted @ 2019-06-06 15:42 bamboo233 阅读(1863) 评论(0) 推荐(0) 编辑
摘要: excel 2003 =2^16 = 65 536 excel 2007 = 2^20 = 1048576 Excel2003,最大行数2^16=65536,最大列数256 Excel2007,最大行数2^20=1048576,最大列数16384 其实没有csv最大行数的限制,只是说excel打开的 阅读全文
posted @ 2019-06-06 09:34 bamboo233 阅读(8072) 评论(0) 推荐(0) 编辑