摘要:
https://www.cnblogs.com/apple2016/p/7020543.html?utm_source=itdadao&utm_medium=referral 阅读全文
摘要:
1.1 查看CPU个数 # cat /proc/cpuinfo | grep "physical id" | uniq | wc -l 2 **uniq命令:删除重复行;wc –l命令:统计行数** 1.2 查看CPU核数 # cat /proc/cpuinfo | grep "cpu cores" 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
使用jmeter发送请求时,有时需要查看发送的请求是否合理,可以使用fiddler更直观的抓取并查看jmeter发送的请求。步骤如下:1.设置fidder-connections 端口号为8888 2.Jmeter添加HTTP请求默认值,第二页输入ip:127.0.0.1 端口:8888 接下来使用 阅读全文
摘要:
左对齐 list=['http://c.biancheng.net/python/','http://c.biancheng.net','https://www.baidu.com/']for s in list: print(s.ljust(35)) 右对齐 list=['http://c.bia 阅读全文
摘要:
【例 1】将一个list拼成一个string,并统计相同元素出现的次数 list = ['c','biancheng','net']str='.'.join(list)print(str)print(str.count('c')) count 方法的语法格式如下: str.count(sub[,st 阅读全文
摘要:
Execute Javascript var ele = document.getElementsByClassName("right_main")[0];ele.scrollTop = ele.scrollHeight; 其中ClassName下拉框所在的ClassName 可以先用开发者工具测试 阅读全文
摘要:
https://blog.csdn.net/wang0112233/article/details/78418698 阅读全文
摘要:
Get Horizontal Position 获取X轴坐标 Get Vertical Position 获取Y轴坐标 Get Element Size 获取整个图表的高度和宽度 阅读全文