首页 > 移动平台 > 详细

python自动化:appium中获取toast

时间:2020-01-07 21:58:43      阅读:97      评论:0      收藏:0      [点我收藏+]

实现代码如下:

from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
class toast:
    def is_toast_exist(self,driver,text,timeout=30, poll_frequency=0.5):
        try:
            toast_loc = ("xpath", "//*[contains(@text,%s)]"%text)
            WebDriverWait(driver, timeout, poll_frequency).until(EC.presence_of_element_located(toast_loc))
            return True
        except:
            return False

python自动化:appium中获取toast

原文:https://www.cnblogs.com/badbadboyyx/p/12163426.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!