Appium获取toast消息
Posted loveskey
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Appium获取toast消息相关的知识,希望对你有一定的参考价值。
android获取toast,需要在参数里设置automationName:Uiautomator2
设置设备的信息
desired_caps =
'platformName': 'Android', # 平台
'platformVersion': '5.1', # 版本号
'deviceName':
'appPackage':
'appActivity':
'unicodeKeyboard': 'True', # 防止键盘中文不能输入
'resetKeyboard': 'True', # 重置设置生效
'automationName': 'Uiautomator2', #识别toast
'noSign':'True'
运行脚本,如果提示Uiautomator2错误, 需要更新appium1.6.3以上才能识别toast.
https://github.com/appium/appium-desktop/releases
以上是关于Appium获取toast消息的主要内容,如果未能解决你的问题,请参考以下文章