10 2020 档案
摘要:1.先杀死待测试应用进程 使用 adb shell -->ps -A | grep [包名] adb shell ps -A |grep galleryu0_a94 31355 15406 15443064 171020 0 0 S com.xxxx.gallery 橙色为进程号 红色为包名 1.1
阅读全文
摘要:学习主要参考: https://blog.csdn.net/lovedingd/article/details/98952868 https://www.cnblogs.com/shenh/p/11572657.html https://www.cnblogs.com/sundawei7/p/119
阅读全文
摘要:https://github.com/qiaomui/app_test https://github.com/qiaomui/app_test.git https://github.com/Louis-me/appiumn_auto https://testerhome.com/topics/193
阅读全文
摘要:isinstance() 函数 isinstance() 函数来判断一个对象是否是一个已知的类型,类似 type()。 >>>a = 2 >>> isinstance (a,int) True https://www.runoob.com/python/python-func-isinstance.
阅读全文
摘要:创建文件夹: mkdir 默认情况下,不带任何参数运行 mkdir 命令会在当前目录下创建目录。
阅读全文
摘要:报错: Original error: Could not proxy command to remote server. Original error: Error: socket hang up 使用参数化来跑test case @parameterized.expand([ ('manshuo
阅读全文
摘要:查到一个资料: 是使用装饰器来进行截图操作的 https://testerhome.com/topics/8883 先记录一下: 可以使用装饰器: def getImage(function): @wraps(function) def get_ErrImage(self,*args, **kwar
阅读全文