摘要: 网线的接口(也叫水晶头、RJ45)常用两种做法: 568A:把网线剥开,从左到右排列顺序为:白绿、绿、白橙、蓝、白蓝、橙、白棕、棕; 568B:把网线剥开,从左到右排列顺序为:白橙、橙、白绿、蓝、白蓝、绿、白棕、棕; 阅读全文
posted @ 2021-04-16 09:35 酷酷的小庄 阅读(467) 评论(0) 推荐(0) 编辑
摘要: import os import time class appInstall: def __init__(self,path): self.path = path def auto_install(self): #获取path路径下的所有文件 files=os.listdir(self.path) 阅读全文
posted @ 2021-04-16 09:27 酷酷的小庄 阅读(328) 评论(0) 推荐(0) 编辑
摘要: import time import os class App: def __init__(self,count): self.count=count def wakeup_sleep(self): cmd="adb shell input keyevent 26" os.popen(cmd) ti 阅读全文
posted @ 2021-04-16 09:25 酷酷的小庄 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 提前条件能通过adb命令控制WiFi开关 import os import time class Wifi(): def __init__(self,count): self.count = count # 开启wifi的方法 def openWifi(self): cmd = 'adb shell 阅读全文
posted @ 2021-04-16 09:22 酷酷的小庄 阅读(481) 评论(0) 推荐(0) 编辑
摘要: 提前条件adb reboot可以控制android系统重启 import os import time class Reboot(): def __init__(self,count): self.count = count def reboot(self): cmd='adb reboot' os 阅读全文
posted @ 2021-04-16 09:18 酷酷的小庄 阅读(292) 评论(0) 推荐(0) 编辑
/* 鼠标点击求赞文字特效 */