共计 300 个字符,预计需要花费 1 分钟才能阅读完成。
toast 介绍
- 繁难的音讯提示框
- 显示工夫无限
- 是一个零碎级别的控件,归属于零碎 settings
- 当 APP 发送音讯时,不是本人造出来的弹框,而是发给零碎,由零碎对立进行弹框
- 此类空间不在 APP 内,须要非凡的控件识别方法
toast 定位
appium 应用 uiautomator 底层的机制来剖析抓取 toast,并把 toast 放到控件树内,但自身并不属于控件
前置工作:设置 capabilities
caps["automationName"] = "uiautomator2" # 默认引擎
应用 xpath 查找
//*[@class="android.widget.Toast"]
//*[contains(@text, "xxxx")]
正文完