1. 程式人生 > >appium之toast處理

appium之toast處理

注意

toast要appium1.6.3以上版本才支援,appium1.4的版本就別浪費時間了

toast定位

1.先看下toast長什麼樣,如下圖,像這種彈出來的訊息"再按一次退出",這種就是toast了。

2.想定位toast元素,這裡一定要注意automationName的引數必須是Uiautomator2才能定位到。

'automationName': 'Uiautomator2'

# coding:utf-8
from appium import webdriver
from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC from time import sleep desired_caps = { 'platformName': 'Android', 'deviceName': '127.0.0.1:62001', 'platformVersion': '4.4.2', 'appPackage': 'com.baidu.yuedu', 'appActivity': 'com.baidu.yuedu.splash.SplashActivity', 'noReset': 'true', 'automationName': 'Uiautomator2' } driver = webdriver.Remote('http://127.0.0.1:4723/wd/hub', desired_caps) # 等主頁面activity出現 driver.wait_activity(".base.ui.MainActivity", 10) driver.back() # 點返回 # 定位toast元素 toast_loc = ("xpath", ".//*[contains(@text,'再按一次退出')]") t = WebDriverWait(driver, 10, 0.1).until(EC.presence_of_element_located(toast_loc)) print t

3.打印出來的結果,出現如下資訊,說明定位到toast了

<appium.webdriver.webelement.WebElement (session="02813cce-9aaf-4754-a532-07ef7aebeb88", element="339f72c4-d2e0-4d98-8db0-69be741a3d1b")>

封裝toast判斷

1.單獨寫一個函式來封裝判斷是否存在toast訊息,存在返回True,不存在返回False

def is_toast_exist(driver,text,timeout=30,poll_frequency=0.5): '''is toast exist, return True or False :Agrs: - driver - 傳driver - text - 頁面上看到的文字內容 - timeout - 最大超時時間,預設30s - poll_frequency - 間隔查詢時間,預設0.5s查詢一次 :Usage: is_toast_exist(driver, "看到的內容") ''' 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 

參考程式碼

# coding:utf-8
from appium import webdriver
from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC desired_caps = { 'platformName': 'Android', 'deviceName': '127.0.0.1:62001', 'platformVersion': '4.4.2', 'appPackage': 'com.baidu.yuedu', 'appActivity': 'com.baidu.yuedu.splash.SplashActivity', 'noReset': 'true', 'automationName': 'Uiautomator2' } def is_toast_exist(driver,text,timeout=30,poll_frequency=0.5): '''is toast exist, return True or False :Agrs: - driver - 傳driver - text - 頁面上看到的文字內容 - timeout - 最大超時時間,預設30s - poll_frequency - 間隔查詢時間,預設0.5s查詢一次 :Usage: is_toast_exist(driver, "看到的內容") ''' 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 if __name__ == "__main__": driver = webdriver.Remote('http://127.0.0.1:4723/wd/hub', desired_caps) # 等主頁面activity出現 driver.wait_activity(".base.ui.MainActivity", 10) driver.back() # 點返回 # 判斷是否存在toast-'再按一次退出' print is_toast_exist(driver, "再按一次退出")