appium 企业微信自动打卡

移动端测试框架

相关链接

mumu 模拟器下载地址:https://mumu.163.com/
appium下载地址:Tags · appium/appium-desktop · GitHub
(appium建议1.19.1)

连接模拟器

【win版】
adb connect 127.0.0.1:7555
adb shell

【mac版】

adb kill-server && adb server && adb shell

Appium Desirecaps 配置

获取 appPackage 和appActivity 名

获取已安装应用Activity类名
windows:
adb logcat ActivityManager:I *:s | findstr "cmp"后启动目标应用

mac:
adb logcat ActivityManager:I *:s | grep "cmp"后启动目标应用

抓取到package名字和activity名字之后,通过下面的命令验证:

adb shell am start -n com.tencent.wework/.launch.LaunchSplashActivity

滑动查找 文本

new UiScrollable(new UiSelector().scrollable(true).instance(0)).scrollIntoView(new UiSelector().text(“查找的文本”).instance(0));
1 个赞