码迷,mamicode.com
首页 >  
搜索关键字:findstr    ( 592个结果
windows查看端口号占用,查看/杀死占用端口号的程序
【1】运行cmd 开始=》运行=》cmd 【2】查看端口:netstat -ano|findstr 8888 netstat 查看网络状态(包含端口) -a 全部网络连接 -n 用ip地址显示主机 -o 输出进程号 查看所有端口号,findstr 筛选8888端口; 【3】根据进程查程序:taskl ...
分类:Windows程序   时间:2020-07-10 13:28:14    阅读次数:86
APP——自动化——python——driver其他常用的方法
一、AndroidDriver下的方法 1、启动其他app /使用命令获取adb shell dumpsys window windows | findstr "mCurrentFocus" Activity activity=new Activity("appPackage", "appActiv ...
分类:移动开发   时间:2020-06-26 20:27:19    阅读次数:109
APP——自动化——python——调用、判断、安装、启动第三方app
# 计算器: C:\Users\del>adb shell dumpsys window w |findstr \/ |findstr name= # mSurface=Surface(name=com.youba.calculate/com.youba.calculate.MainActivity ...
分类:移动开发   时间:2020-06-26 14:58:06    阅读次数:105
APP——自动化——python——重置、锁屏、后台运行
# 计算器: C:\Users\del>adb shell dumpsys window w |findstr \/ |findstr name= # mSurface=Surface(name=com.youba.calculate/com.youba.calculate.MainActivity ...
分类:移动开发   时间:2020-06-26 14:37:50    阅读次数:104
APP——自动化——python——将app放到后台运行一段时间,然后再在前台显示
# 计算器: C:\Users\del>adb shell dumpsys window w |findstr \/ |findstr name= # mSurface=Surface(name=com.youba.calculate/com.youba.calculate.MainActivity ...
分类:移动开发   时间:2020-06-25 21:49:14    阅读次数:97
APP——自动化——python——截图放到电脑文件里面
# 计算器: C:\Users\del>adb shell dumpsys window w |findstr \/ |findstr name= # mSurface=Surface(name=com.youba.calculate/com.youba.calculate.MainActivity ...
分类:移动开发   时间:2020-06-25 21:41:10    阅读次数:94
APP——自动化——python——关闭和打开初始化(desired_caps中设置的的app
# 计算器: C:\Users\del>adb shell dumpsys window w |findstr \/ |findstr name= # mSurface=Surface(name=com.youba.calculate/com.youba.calculate.MainActivity ...
分类:移动开发   时间:2020-06-25 19:52:42    阅读次数:127
APP——自动化——python——系统未按装待测app和已经按装待测app不同配置
主要区别: 'app': 'C:\\Users\\del\\Desktop\\b\\jsq.apk', 安装了就不需要路径,没有安装就需要路径 一、系统未按装待测app # C:\Users\del>adb shell dumpsys window w |findstr \/ |findstr na ...
分类:移动开发   时间:2020-06-25 17:56:52    阅读次数:109
使用netstat查看某个端口哪个进程占用
Linux: netstat -anp|grep 端口号 Windows: netstat –ano|findstr 端口号 ...
分类:Web程序   时间:2020-06-23 15:40:32    阅读次数:46
APP测试之内存命令查询
CPU占有率 adb shell dumpsys cpuinfo :获取本机CPU占有率 adb shell dumpsys cpuinfo | findstr +包名 :获取应用的CPU占有率 内存使用情况 adb shell getprop | findstr dalvik :本机内存的使用情况 ...
分类:移动开发   时间:2020-06-22 21:08:55    阅读次数:92
592条   上一页 1 2 3 4 5 6 ... 60 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!