Python+Appium 获取 toast 方法的封装

Posted Syw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python+Appium 获取 toast 方法的封装相关的知识,希望对你有一定的参考价值。

获取toast内容方法封装如下:

  def get_Toast(self,message):  #查找toast值
        ‘‘‘
        method explain:查找toast的值,与find_Toast实现方法一样,只是不同的2种写法
        parameter explain:【text】查找的toast值
        Usage:
            device.get_Toast(再按一次退出iBer)
        ‘‘‘
        logging.info("查找toast值---‘%s‘" %(message))
        try:
            message = //*[@text=\‘{}\‘].format(message)
            ele = WebDriverWait(self.driver,5,0.5).until(expected_conditions.presence_of_element_located((By.XPATH,message)))
            return ele.get_attribute("text")
            logging.info("查找到toast----%s"%message)
        except:
            logging.error("未查找到toast----%s"%message)
            return False

 

以上是关于Python+Appium 获取 toast 方法的封装的主要内容,如果未能解决你的问题,请参考以下文章

获取appPackage和appActivity(python+appium)

appium+python+ios怎么获取元素属性

Python + Appium 获取当前屏幕的截图方法的封装

Python+Appium 获取 toast 方法的封装

python+appium获取app元素属性值

python+appium从Mysql数据库中获取验证码