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

Python+Appium 获取 toast 方法的封装

时间:2018-01-13 20:45:31      阅读:573      评论:0      收藏:0      [点我收藏+]

标签:driver   find   log   ext   als   parameter   pos   turn   exp   

获取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 方法的封装

标签:driver   find   log   ext   als   parameter   pos   turn   exp   

原文地址:https://www.cnblogs.com/syw20170419/p/8280115.html

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