01 2022 档案

摘要:连接ADB设备: 可以通过USB或Wifi与ADB设备进行连接,进而调用Uiautomator2框架,支持同时连接单个或多个ADB设备。 USB连接:只有一个设备也可以省略参数,多个设备则需要序列号来区分 import uiautomator2 as u2 d = u2.connect("--ser 阅读全文
posted @ 2022-01-29 08:16 myrj 阅读(1785) 评论(0) 推荐(0)
摘要:调用uiautomator2的过程 调试:python -m weditor 配置手机设备参数,设置具体操作的是哪一台手机抓取手机上应用的控件,制定对应的控件来进行操作对抓取到的控件进行操作,比如点击、填写参数等。 设备连接方法,有两种: python-uiautomator2连接手机的方式有两种, 阅读全文
posted @ 2022-01-27 15:20 myrj 阅读(683) 评论(0) 推荐(0)
摘要:noSQL Manager for MongoDB Professional备份到本地:1.双击某个数据库,展开,右击 Copy Collections to another Database2.选择目标服务器localhost:27017 选择对应的目标数据库3.全选所有表(向右双箭头)4.点击上 阅读全文
posted @ 2022-01-25 22:26 myrj 阅读(320) 评论(0) 推荐(0)
摘要:常见的用户名: admin, root, administrator, user, test 常用密码:123456, admin, password, root, test 搜索 复制 阅读全文
posted @ 2022-01-14 07:22 myrj 阅读(683) 评论(0) 推荐(0)
摘要:ftplibpexpect telnetlib https://github.com/camelot-dev/camelot 处理提取pdf 解决安装问题https://camelot-py.readthedocs.io/en/master/user/install-deps.html ffmpy安 阅读全文
posted @ 2022-01-13 05:20 myrj 阅读(70) 评论(0) 推荐(0)
摘要:TRACERT命令 Tracert(跟踪路由是路由跟踪实用程序,用于确定 IP数据包访问目标所采取的路径。Tracert 命令使用用 IP 生存时间 (TTL) 字段和 ICMP 错误消息来确定从一个主机到网络上其他主机的路由.其命令格式如下: tracert [-d] [-h maximum_ho 阅读全文
posted @ 2022-01-12 05:42 myrj 阅读(2930) 评论(0) 推荐(0)
摘要:import ctypes from ctypes.wintypes import * import win32clipboard from win32con import * import sys class BITMAPFILEHEADER(ctypes.Structure): _pack_ = 阅读全文
posted @ 2022-01-11 06:05 myrj 阅读(108) 评论(0) 推荐(1)
摘要:#include <stdio.h> int bh(int s,int a) { while(s) { if(s%10==a) return 1; s=s/10; } return 0; } main() { int sum=0,a,b,c; for(a=1;a<=1000;a++) if(bh(a 阅读全文
posted @ 2022-01-07 15:44 myrj 阅读(216) 评论(0) 推荐(0)