2021年6月28日
摘要: https://www.cnblogs.com/JetpropelledSnake/p/9396511.html https://nagle.top 阅读全文
posted @ 2021-06-28 13:08 zennpumpkin 阅读(14) 评论(0) 推荐(0) 编辑
摘要: Linux curl命令详解 curl是一个非常实用的、用来与服务器之间传输数据的工具;支持的协议包括 (DICT, FILE, FTP, FTPS, GOPHER, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SC 阅读全文
posted @ 2021-06-28 12:55 zennpumpkin 阅读(949) 评论(0) 推荐(0) 编辑
2021年6月22日
摘要: # 操作sql server数据库:增删改查import pymssqlfrom comm.config.operateconfig import ConfigOperate# server 数据库服务器名称或IP:000.000.000.000# user 用户名:sa# password 密码: 阅读全文
posted @ 2021-06-22 15:38 zennpumpkin 阅读(35) 评论(0) 推荐(0) 编辑
2021年6月15日
摘要: linux 基本命令 date:查看时间 ping cp :copy scp ctrl + c (中止) ls, ls -l, ls -a, ls -lt tar zcvf 压缩包文件名 目录文件名列表 tar zxvf 压缩包文件名 pwd :查看当前路径 whereami cd :切换路径 ch 阅读全文
posted @ 2021-06-15 15:19 zennpumpkin 阅读(32) 评论(0) 推荐(0) 编辑
摘要: pytest -h 1. pytest --collection-only testcases 只收集要运行的case,但不运行 2. pytest -k (匹配表达式) pytest -k "case1 and case2" --collection-only pytest -k "case1 o 阅读全文
posted @ 2021-06-15 11:54 zennpumpkin 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 1. import packages from selenium import webdriver from selenium.webdriver.common.keys import Keys 2. 元素操作 清空文本 elm.clear() 输入文本 elm.send_keys('xxxx') 阅读全文
posted @ 2021-06-15 09:57 zennpumpkin 阅读(171) 评论(0) 推荐(0) 编辑
2021年6月2日
摘要: 1.检查请求后返回的状态码 status 为200 备注:status code:Code is 200 pm.test("Status code is 200", function () { pm.response.to.have.status(200); }); 2.通过返回状态码检查是成功的p 阅读全文
posted @ 2021-06-02 14:40 zennpumpkin 阅读(57) 评论(0) 推荐(0) 编辑
摘要: https://linux.cn/article-12338-1.html 阅读全文
posted @ 2021-06-02 10:53 zennpumpkin 阅读(16) 评论(0) 推荐(0) 编辑
2021年5月18日
摘要: public static void confirmOkButton(WebDriver driver) { WebElement elements = driver.findElement(By.xpath("//button[contains(text(),'OK')]")); ((Javasc 阅读全文
posted @ 2021-05-18 15:45 zennpumpkin 阅读(34) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/TankXiao/p/3888070.html 阅读全文
posted @ 2021-05-18 15:19 zennpumpkin 阅读(25) 评论(0) 推荐(0) 编辑