- # python-U1
- import uiautomator——from uiautomator import ——d=Device(“SN”)——d.info
- # python-U2
- import uiautomatro2 as u2——d = u2.connect("IP/SN")——d.info
- # 打開uiautomator2—weditor
- python –m uiautomator2 init / python –m weditor
- # 打開weditor若出現 error : python –m weditor 刪掉uiautomator.apk,重新進行命令輸入
- # 連接電腦查看手機之間連接ip
- adb shell > ifconfig p2p0
- # 連接電腦查看手機連接無線ip
- adb shell > ifconfig wlan0
- # 強制刪除某文件
- adb shell > rm –rf <文件名>
- # Linux查看java版本
- update-alternatives –config java
- # Linux更新電腦證書
- sudo update-ca-certificates –f
- # python2 python 3 兼容(pip2 list / pip3 list)
- py -2 –m pip list / py -3 –m pip list
- # 創建/刪除qq文件夾
- mkdir qq / rmdir qq
- # adb查看設備fingerprint信息
- adb shell getprop | grep fingerprint
- # 在android studio底部的Terminal窗口中輸入: netstat -aon|findstr 5037 如下圖,會列出哪些進程占用了這個端口 1指向的是輸入命令,2指向的是搜索結果,表示有這些進程占用了這個端口
- netstat -aon|findstr 5037
- # 查詢在用的端口
- netstat –ant
- # python獲取系統時間
- ①#!/usr/bin/python
- import time
- print time.asctime( time.localtime(time.time()) )
- ②print time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))
- ③print "%s" % time.ctime()
- ④from datetime import datetime
- print datetime.now()
- print datetime.utcnow()
- 輸出結果:
- ①Wed Dec 12 09:23:02 2018
- ②2018-12-12 09:23:27
- ③Wed Dec 12 09:23:40 2018
- ④2018-12-12 09:24:10.106502
- 2018-12-12 01:24:34.444605
- # python輸出時間戳
- import time
- import datetime
- t = time.time()
- print (t) #原始時間數據
- print (int(t)) #秒級時間戳
- print (int(round(t * 1000))) #毫秒級時間戳
- 輸出結果:
- 1499825149.26
- 1499825149
- 1499825149257
