摘要:
原文地址https://www.cnblogs.com/zhaof/p/7198407.html 这篇文章中写了常用的下载中间件的用法和例子。Downloader Middleware处理的过程主要在调度器发送requests请求的时候以及网页将response结果返回给spiders的时候,所以从 阅读全文
阅读排行榜
Python 之 os.walk()
2018-09-02 19:05 by 清风软件测试开发, 516 阅读, 收藏,
摘要:
原文地址https://www.cnblogs.com/JetpropelledSnake/p/8982495.html http://www.runoob.com/python/os-walk.html os.walk方法,主要用来遍历一个目录内各个子目录和子文件。 可以得到一个三元tupple( 阅读全文
python adb 安卓app性能测试
2022-09-02 18:30 by 清风软件测试开发, 515 阅读, 收藏,
摘要:
主要是进行cpu、内存、冷启动、热启动、流量、电量的监测 可获取到相关数据,同竞类产品对比,或者同版本对比 cpustatus adb命令:adb shell "dumpsys cpuinfo | grep com.person.buddy" # coding=utf-8#/usr/bin/pyth 阅读全文
Java中ArrayList和LinkedList区别
2017-05-04 22:32 by 清风软件测试开发, 514 阅读, 收藏,
摘要:
一般大家都知道ArrayList和LinkedList的大致区别: 1.ArrayList是实现了基于动态数组的数据结构,LinkedList基于链表的数据结构。 2.对于随机访问get和set,ArrayList觉得优于LinkedList,因为LinkedList要移动指针。 3.对于新增和删除 阅读全文
Selenium2.0 Webdriver 随笔
2017-07-18 00:36 by 清风软件测试开发, 513 阅读, 收藏,
摘要:
Webdriver can't action the element when the element is out of view 1. Scroll to the element use JavaScript to scroll the element to view [csharp] view 阅读全文