上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 16 下一页
摘要: 1.time.sleep(1):强制等待1s,使用效果明显但是脚本执行也变慢不少 2.隐式等待:使用一次后全程生效 1 def wait(self,seconds): 2 self.driver.implicity_wait(seconds) 3.显式等待 from selenium.webdriv 阅读全文
posted @ 2021-03-25 19:56 _titleInfo 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 一个接口,参数包括file,MIME类型填的是:multipart/form-data,执行后报错:Current request is not a multipart request 解决办法:implementation 必须选择java 阅读全文
posted @ 2021-01-28 11:00 _titleInfo 阅读(1004) 评论(1) 推荐(1) 编辑
摘要: 时间:2020/12/31 本文是对文章https://www.cnblogs.com/jinziguang/p/13610209.html的补充:将locust生成的数据通过prometheus收集,再通过grafana展示出来 环境: windows:运行locust的master机和slave 阅读全文
posted @ 2020-12-31 14:24 _titleInfo 阅读(1599) 评论(0) 推荐(0) 编辑
摘要: 设置go mod:go mod init filename.go 转载自:https://www.cnblogs.com/bbllw/p/12377155.html 阅读全文
posted @ 2020-12-29 15:36 _titleInfo 阅读(97) 评论(0) 推荐(0) 编辑
摘要: locust -f xx.py报错: /usr/lib/python3.7/importlib/_bootstrap.py:219: RuntimeWarning: greenlet.greenlet size changed, may indicate binary incompatibility 阅读全文
posted @ 2020-12-29 14:03 _titleInfo 阅读(2523) 评论(0) 推荐(0) 编辑
摘要: psql查询某个表的列名: select column_name from information_schema.columns where table_name='xx' and table_schema=''public; 阅读全文
posted @ 2020-12-17 15:28 _titleInfo 阅读(1483) 评论(0) 推荐(0) 编辑
摘要: 查看当前定时任务:cat /etc/crontab和crontab -l 添加定时任务:crontab -e,进入编辑模式,格式如"* * * * * sh /path/xx.sh",退出i模式后shift+zz退出保存即可、使用crontab -l查看 阅读全文
posted @ 2020-12-04 10:21 _titleInfo 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 1.获取时间: DATE=`date +%Y_%m_%d` echo $DATE >>>2020_12_03 (注:关于参数传递,如果右边是命令就需要加 ``;如果右边是非命令就不用加 ``;引用时都是直接 $变量名) 2.读取键盘输入: echo "请输入:" read input echo $i 阅读全文
posted @ 2020-12-04 09:54 _titleInfo 阅读(664) 评论(0) 推荐(0) 编辑
摘要: 性能测试博客:https://defonds.blog.csdn.net/article/list/5 阅读全文
posted @ 2020-12-02 16:03 _titleInfo 阅读(55) 评论(0) 推荐(0) 编辑
摘要: numpy库常用操作:https://www.cnblogs.com/ikww/p/11526481.html malplotlib常用操作:https://www.cnblogs.com/ikww/p/11497374.html 散点图:https://www.jb51.net/article/1 阅读全文
posted @ 2020-11-28 14:23 _titleInfo 阅读(108) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 16 下一页
//雪花飘落效果