摘要:
@echo offcolor 2set num=0:Loopecho startCal..set /a num += 1echo checkDeviceStatusadb wait-for-deviceecho longpressadb shell input keyevent --longpres 阅读全文
2023年12月27日
2023年11月10日
摘要:
ODM: Original Design Manufacturer (原始设计制造商)PCBA: Printed Circuit Board Assembly (印刷电路板组装)COB: Chip on Board (板上芯片封装)MOB: Module on Board (模块板上封装)EMS: 阅读全文
2023年11月9日
2022年1月6日
2021年10月30日
2021年4月21日
摘要:
total = 0def sum(arg1, arg2): #global total """ 这是一个求和函数 :param arg1: 输入值1 :param arg2: 输入值2 :return: 返回求和结果 """ total2 = arg1 + arg2 print("函数内 : ", 阅读全文
摘要:
is 和== 主要是判断字符的id属性 id相同,则运算表达式为True,否则为False a = [20, 1, 2]b = [20, 1, 2]# a = b = [20, 1, 2] # 可以试试不同的赋值方式下,a、b的id if a is b: print("1 - a 和 b 有相同的标 阅读全文
摘要:
1.for循环 用于压力执行某个操作 前提:循环的路径须要确定且唯一 例:反复开关机 @echo off set num=0:ok : 注释符“:”set /a num+=1 : 用于统计执行的次数 adb wait-for-device : 安卓设备连接&确认 ping -n 15 127.0.0 阅读全文
摘要:
total = 0def sum(arg1, arg2): #global total """ 这是一个求和函数 :param arg1: 输入值1 :param arg2: 输入值2 :return: 返回求和结果 """ total2 = arg1 + arg2 print("函数内 : ", 阅读全文
2021年4月14日
摘要:
指定事件参数设置 在Monkey中,虽然输入的事件是随机产生的,但是可以指定输入事件类型的百分比,让其控制在我们需要的范围内。 在Monkey中,可以设定的事件类型有: --pct-touch <percent>:指定触摸事件的百分比 --pct-motion <percent>:指定滑动事件的百分 阅读全文