码迷,mamicode.com
首页 > 移动开发 > 详细

Appium获取Toast消息

时间:2020-02-26 18:46:39      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:until   ast   name   import   增强   内容   condition   代码   poll   

Android中的Toast是一种简易的消息提示框。且一般显示3s左右的时间就消失。他属于系统的一种提示,而不是应用上的。所以使用定位元素工具定位是获取不到Toast元素的。

定位Toast元素需要借助UiAutomator2 ,automationName:uiautomator2;由于他的设计方式,所以在getPageSource 是查找不到的。在定位Toast元素时必须使用xpath定位方式。
使用xpath定位有两种方法,一种是借助Toast的className:android.widget.Toast;另一种是借助文本内容。所以定位写法有两种形式:
driver.find_element_by_xpath("//*[@class=‘android.widget.Toast‘]")
driver.find_element_by_xpath("//*[@text=‘xxxxx‘]")

在app UI自动化中,Toast是常用的一种文言提示方法。所以对此进行封装,便于以后调用。

# coding:utf-8
from appium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC


def get_toast(driver, text=None, timeout=5, poll_frequency=0.5):
    """
    get toast
    :param driver: driver
    :param text: toast text
    :param timeout: Number of seconds before timing out, By default, it is 5 second.
    :param poll_frequency: sleep interval between calls, By default, it is 0.5 second.
    :return: toast
    """
    if text:
        toast_loc = ("//*[contains(@text, ‘%s‘)]" %text)
    else:
        toast_loc = "//*[@class=‘android.widget.Toast‘]"

    try:
       WebDriverWait(driver, timeout, poll_frequency).until(EC.presence_of_element_located((xpath, toast_loc)))
       toast_elm = driver.find_element_by_xpath(toast_loc)
       return toast_elm

    except:
        return "Toast not found"
解释:WebDriverWait(driver, timeout, poll_frequency).until(EC.presence_of_element_located((‘xpath‘, toast_loc)))

在这只是相当于一个频率执行,在固定的时间中判断Toast是否存在。当然,如果在初始化driver时设置了driver.implicitly_wait(30),则这儿的查找可以注释掉。

在这儿这样设计的目的只是为了避免代码执行太快或太慢,获取不到Toast,增强代码的健壮性而已

 

调用也很简单,如果是需要判断Toast是否出现,则只需要判断 get_toast()为True。

如果要获取Toast文本,则添加 text,get_toast().text

 

Appium获取Toast消息

标签:until   ast   name   import   增强   内容   condition   代码   poll   

原文地址:https://www.cnblogs.com/tynam/p/12368203.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!