小肥羊要进步

随笔分类 -  App移动端自动化

1 2 3 下一页

Appium
获取log
摘要:输入命令:adb logcat -v time >.\logcat.log 开始抓取日志,同时在手机上操作步骤。 C:\windows\system32>adb logcat -v time > C:\Users\test\Log 注意:adb logcat -v time:是开始抓取日志命令 >: 阅读全文

posted @ 2022-12-29 14:39 小肥羊要进步 阅读(330) 评论(0) 推荐(0) 编辑

三星手机Android12版本,按照下面步骤复现问题后并立刻抓取log
摘要:抓取log步骤: 1. 进入到拨号盘后,再输入 *#9900#, Debug level 选择 "MID" ,设备将自动重启 2. 复现问题 3. 进入到拨号盘后,再次输入 *#9900# ,选择 “ Run dempstate/logcat " 4. 等待抓取完成,再选择 "Copy to sdc 阅读全文

posted @ 2022-09-16 15:01 小肥羊要进步 阅读(1844) 评论(0) 推荐(0) 编辑

如何抓取安卓手机的闪退日志
摘要:最近遇到一个问题 当把我们的APP安装到vivo S15手机上的时候,出现白屏和闪退。 那我需要抓取错误日志。 1)Connect phone to your PC and type: adb logcat -f filename1.txt And ctrl+c after 10 second 显示 阅读全文

posted @ 2022-08-12 22:00 小肥羊要进步 阅读(1640) 评论(0) 推荐(0) 编辑

Windows 无法成功安装 staging app(IPA文件) 到苹果手机
摘要:1.内部测试的Staging app,通过xcode或者爱思助手都无法安装成功 2.百思不得其解 ,我用Mac 中的 idevices install 命令强制安装成功的 3.但是通过windows ,爱思助手如何成功安装IPA呢? 安装签名 将签名好的IPA staging app保存在桌面 导入 阅读全文

posted @ 2021-12-09 15:31 小肥羊要进步 阅读(199) 评论(0) 推荐(0) 编辑

同时连接多个设备, adb移除多余设备
摘要:jacliu@Jacs-MacBook-Pro ~ % adb devicesList of devices attachedDDYNW20603001725 deviceK6S4041231B0050 device 我只需要连接一台设备,不需要连接2台设备,而且我需要安装apk在一个设备上 輸入指 阅读全文

posted @ 2021-10-20 15:28 小肥羊要进步 阅读(7190) 评论(0) 推荐(0) 编辑

RF定位
摘要:1.导包SeleniumLibrary 失败,红色字体 解决方法 重新导入就成功了 元素定位 相对路径 //form/span/input xpath=//form/span[2]/input 通过属性定位 xpath=//input[@autocomplete='off'] 通过部分属性 xpat 阅读全文

posted @ 2021-08-11 22:23 小肥羊要进步 阅读(52) 评论(0) 推荐(0) 编辑

For android devices ,how to test the update the OTA
摘要:Background: 1.The OTA (Fireware version is lower version than the currect version ,or now the firewire version is not the updatest version) Then it wi 阅读全文

posted @ 2021-08-11 17:48 小肥羊要进步 阅读(91) 评论(0) 推荐(0) 编辑

安装apk到安卓手机,安装wear os by google 到安卓手机(失败了)可以借鉴下安装命令
摘要:adb install -r ~/Downloads/service-tools_2.1(develop*) » adb install -r /Users/vtaduy/Downloads/Wear\ OS\ by\ Google\ Smartwatch_v2.49.0.387790360.gms 阅读全文

posted @ 2021-08-06 16:29 小肥羊要进步 阅读(831) 评论(0) 推荐(0) 编辑

Force to flash the build on the watch智能手表测试
摘要:1.昨天团队给的packages, 因为Jenkins发布的问题,导致包有点问题 所以我用 service tools 去./myflash -o 到手表是报错的 2个解决方法 1)找开发要新的build 因为下周就会出新的build,所以就不去打扰开发了 2)force to flash 前提: 阅读全文

posted @ 2021-08-06 11:52 小肥羊要进步 阅读(80) 评论(0) 推荐(0) 编辑

RF 常用关键字
摘要:log打印 comment 注释 set variable 定义变量 sleep 强制的等待 catenate拼接关键字(SEPARATOR=||) create list 创建列表($() @{}) create dictionary 创建字典 get dictionary keys get di 阅读全文

posted @ 2021-08-03 22:34 小肥羊要进步 阅读(217) 评论(0) 推荐(0) 编辑

使用bundletool 命令to install the apk to the android on MAC
摘要:1.Mac install homebrew 2.Install bundletool on Mac by Homebrew command line: Install bundletool using brewbrew install bundletool https://brewinstall. 阅读全文

posted @ 2021-08-03 15:11 小肥羊要进步 阅读(354) 评论(0) 推荐(0) 编辑

Mac安装ipa文件到苹果手机
摘要:另外一种方法 Xcode 打来,手机连接Mac windows->Devices and Simulators 阅读全文

posted @ 2021-08-03 10:33 小肥羊要进步 阅读(834) 评论(0) 推荐(0) 编辑

adb install apk 到安卓上报错adb: error: failed to get feature set: no devices/emulators found
摘要:1.今天要使用adb install XXX.apk 通过mac把apk文件放在安卓手机里,但是遇到报错如下 2.检查了连接的 USB的手机是允许传输文件, 3.手机也打开了开发这模式 4.许久,发现原因,没有打开USB 调试模式在安卓手机上 安卓手机怎么打开USB调试功能 https://jing 阅读全文

posted @ 2021-08-03 10:28 小肥羊要进步 阅读(3390) 评论(0) 推荐(0) 编辑

创建RF项目
摘要:1. 2. 3. 1.新建项目 DIctionary 2.新建套件 file 3.新建用例 F5 搜索关键字 ctril+shift+空格 自动补全 阅读全文

posted @ 2021-07-21 22:46 小肥羊要进步 阅读(83) 评论(0) 推荐(0) 编辑

RF简介
摘要:主流: 1.数据驱动:把测试用例的数据单独提取出来放入到excel 或者yaml文件里面,通过改变excel或者yaml中的苏剧来驱动用例执行 2.关键字驱动(RF):在一些项目中的逻辑封装成一个关键字,调用不用的关键字来实现不同的逻辑,从而驱动用例执行 特点: 编写用例简 单,可以以robot.t 阅读全文

posted @ 2021-07-20 23:11 小肥羊要进步 阅读(1043) 评论(0) 推荐(0) 编辑

ADB & FASTBOOT COMMAND ON WINDOWS
摘要:ADB & FASTBOOT COMMAND ON WINDOWS PART1: GET ADB & FASTBOOT TOOLS Download the latest version of platform-tools on Google drive (link) or go to the of 阅读全文

posted @ 2021-07-12 16:58 小肥羊要进步 阅读(95) 评论(0) 推荐(0) 编辑

通过Mac电脑安装apk 和 ipa到安卓和苹果手机
摘要:我只需要2个命令 adb install xxx/xxx/xxx(apk路径) ideviceinstaller -i xxx.ipa 1.adb apk file to the android mobile 一、adb安装(已安装android sdk可用该方法) 指令安装apk到android手 阅读全文

posted @ 2021-07-12 16:57 小肥羊要进步 阅读(1367) 评论(0) 推荐(0) 编辑

Mac搭建移动端自动化环境遇到的node安装失败的坑与解决方法
摘要:1.安装了Xcode和homebrew 2.安装node,遇到了坑 报错不断。。。 解决方案 download JDK :https://www.oracle.com/java/technologies/javase-jdk16-downloads.html instsall link :teste 阅读全文

posted @ 2021-06-29 11:03 小肥羊要进步 阅读(85) 评论(0) 推荐(0) 编辑

Appium环境搭建和命令
摘要:1.sdk:搭配android studio 安装 2.appium desktop 安装 Android命令 adb kill -server adb device adb logcat adb logcat | grep -i desplayed adb logcat | grep -i xue 阅读全文

posted @ 2021-06-23 22:49 小肥羊要进步 阅读(42) 评论(0) 推荐(0) 编辑

穿戴设备(智能手表)移动端测试浅谈1
摘要:1.智能手表目前分为wear os平台(基于google)和hybraid hybrid HR 和 Hybrid的区别在于 1)hybrid hr 是digital watch face 2)Hybriad 是传统的 watch face 两者都可以在手机端的app上查看 数据,比如同步走路步数,h 阅读全文

posted @ 2021-06-21 23:35 小肥羊要进步 阅读(1087) 评论(0) 推荐(0) 编辑

1 2 3 下一页
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

导航

统计

点击右上角即可分享
微信分享提示