摘要: adb常用命令 1 adb介绍1.1 ADB全称Android Debug Bridge, 是android sdk里的一个工具, 用这个工具可以直接操作管理android模拟器或者真实的andriod设备(如G1手机)它的主要功能有: 运行设备的shell(命令行) 管理模拟器或设备的端口映射 计 阅读全文
posted @ 2023-05-31 16:17 来了发发发 阅读(47) 评论(0) 推荐(0)
摘要: 1. 重复安装 io.appium.uiautomator2.server 和 io.appium.uiautomator2.server.test 解决方法: 1. caps增加设置 skipServerInstallation:True 注意当设备上没有包时不能这么设置 2. appium报错提 阅读全文
posted @ 2023-05-31 16:15 来了发发发 阅读(116) 评论(0) 推荐(0)
摘要: 1. 简介 Monkey 是一个在模拟器或设备上运行的程序 生成用户事件的伪随机流 2. 安装 Android SDK提供了Monkey工具 使用移动设备 3. 使用 基本配置选项,例如设置事件数量 操作约束,例如对指定的App进行测试 事件类型和频率 调试选项 adb shell monkey [ 阅读全文
posted @ 2023-05-31 16:14 来了发发发 阅读(26) 评论(0) 推荐(0)
摘要: 1. 安装 pip install jsonpath2. jsonpath语法: 符号 描述 $ 查询的根节点对象,用于表示一个json数据,可以是数组或对象 @ 过滤器断言(filter predicate)处理的当前节点对象,类似于Java中的this字段 * 通配符,可以表示一个名字或数字 . 阅读全文
posted @ 2023-05-31 16:09 来了发发发 阅读(27) 评论(0) 推荐(0)
摘要: 1.在自己的GitHub上创建一个仓库。 2.打开命令行工具,切换到需要上传的工程目录下。 3.初始化当前目录作为Git仓库。 git init 4.添加目录下的文件到本地仓库。 git add . 添加当前目录下的所有文件 如果需要unstage某个文件,使用git reset HEAD <fil 阅读全文
posted @ 2023-05-31 15:50 来了发发发 阅读(76) 评论(0) 推荐(0)
摘要: git pull 强制覆盖本地的代码方式,下面是正确的方法: git fetch --all然后,你有两个选择: git reset --hard origin/master或者如果你在其他分支上: git reset --hard origin/<branch_name>说明: git fetch 阅读全文
posted @ 2023-05-31 15:48 来了发发发 阅读(779) 评论(0) 推荐(0)
摘要: 1. 通过customRules 在OnBeforeRequest 方法里面添加代码 ```javascript if (oSession.host=="a"){ oSession.host="b" } if (oSession.host=="short.bi.cn"){ oSession.host 阅读全文
posted @ 2023-05-31 14:24 来了发发发 阅读(21) 评论(0) 推荐(0)
摘要: # 介绍 * [官网下载地址](https://www.telerik.com/fiddler/fiddler-classic) * Fiddler 是位于客户端和服务器端的 HTTP 代理 * 也是目前最常用的 HTTP 抓包工具之一 * 功能 * 监控流量 * 支持解密 HTTPS * 查看分析 阅读全文
posted @ 2023-05-31 14:08 来了发发发 阅读(40) 评论(0) 推荐(0)
摘要: #官网介绍 [mocking-with-examples](https://learning.postman.com/docs/designing-and-developing-your-api/mocking-data/mocking-with-examples/) [mock-with-api] 阅读全文
posted @ 2023-05-30 17:28 来了发发发 阅读(79) 评论(0) 推荐(0)
摘要: # Postman 安装 安装地址: https://www.postman.com/downloads 在线版本: https://go.postman.co/home?ref_key=zR3Nib67j1nSUZ949G_8Xb # 请求发送 * 发送表单格式的request: body->fo 阅读全文
posted @ 2023-05-30 15:20 来了发发发 阅读(44) 评论(0) 推荐(0)