摘要:在使用自動(dòng)化測試框架過程中,基于對(duì)控件實(shí)現(xiàn)長按,發(fā)現(xiàn)自帶的方法很多時(shí)候不能實(shí)現(xiàn)對(duì)控件的長按,因此需要重寫該方法。主要代碼如下調(diào)用方式在使用自動(dòng)化框架時(shí),調(diào)用方法來實(shí)現(xiàn)對(duì)控件長按效果。其中參數(shù)控件對(duì)象,表示長按時(shí)間,單位為毫秒。
在使用uiautomator自動(dòng)化測試框架過程中,基于對(duì)控件實(shí)現(xiàn)長按,發(fā)現(xiàn)uiautomator自帶的方法longClick()很多時(shí)候不能實(shí)現(xiàn)對(duì)控件的長按,因此需要重寫該方法。
主要代碼如下:
public static boolean longClickWithTime(UiObject obj, long time) throws Exception { Class> InteractionControllerClass = null; Method findAccessibilityNodeInfoMethod = null; Method getInteractionControllerMethod = null; Method touchDownMethod = null; Method touchUpMethod = null; Field WAIT_FOR_SELECTOR_TIMEOUT = null; findAccessibilityNodeInfoMethod = UiObject.class.getDeclaredMethod("findAccessibilityNodeInfo",long.class); findAccessibilityNodeInfoMethod.setAccessible(true); WAIT_FOR_SELECTOR_TIMEOUT = UiObject.class.getDeclaredField("WAIT_FOR_SELECTOR_TIMEOUT"); WAIT_FOR_SELECTOR_TIMEOUT.setAccessible(true); AccessibilityNodeInfo node = (AccessibilityNodeInfo) findAccessibilityNodeInfoMethod.invoke(obj, WAIT_FOR_SELECTOR_TIMEOUT.getLong(obj)); if(node == null) { throw new UiObjectNotFoundException(obj.getSelector().toString()); } Rect rect = obj.getVisibleBounds(); getInteractionControllerMethod = UiObject.class.getDeclaredMethod("getInteractionController"); getInteractionControllerMethod.setAccessible(true); Object interactionController = getInteractionControllerMethod.invoke(obj); InteractionControllerClass = Class.forName("com.android.uiautomator.core.InteractionController"); touchDownMethod = InteractionControllerClass.getDeclaredMethod("touchDown", int.class, int.class); touchDownMethod.setAccessible(true); touchUpMethod = InteractionControllerClass.getDeclaredMethod("touchUp", int.class, int.class); touchUpMethod.setAccessible(true); if(Boolean.parseBoolean(touchDownMethod.invoke(interactionController, rect.centerX(), rect.centerY()).toString())) { SystemClock.sleep(time); if(Boolean.parseBoolean(touchUpMethod.invoke(interactionController, rect.centerX(), rect.centerY()).toString())) { return true; } } return false; }
調(diào)用方式:
在使用uiautomator自動(dòng)化框架時(shí),調(diào)用longClickWithTime(Object, time)方法來實(shí)現(xiàn)對(duì)UiObject控件長按效果。其中Object參數(shù):uiautomator UiObject控件對(duì)象,time:表示長按時(shí)間,單位為毫秒。
例如:對(duì)手機(jī)主頁時(shí)鐘按鈕進(jìn)行長按5s操作,
longClickWithTime(new UiCollection(new UiObject(new UiSelector().text("Clock")), 5000);
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://m.specialneedsforspecialkids.com/yun/65172.html
摘要:使用包控制手機(jī)時(shí),需要在手機(jī)上安裝在電腦中使用彈出運(yùn)行框,在框內(nèi)輸入調(diào)用命令行窗口。具備較多功能,在此不再贅述,百度具有較多資料。調(diào)試工具用于查看手機(jī)當(dāng)前狀態(tài)用瀏覽器控制手機(jī)調(diào)試手機(jī),還可以實(shí)時(shí)的查找控件中的屬性以及其它屬性值等等。 1. 配置Python環(huán)境變量 Python環(huán)境變...
摘要:三性能測試工具官網(wǎng)介紹騰訊開源的的隨身調(diào)測平臺(tái),支持和。官網(wǎng)介紹騰訊游戲部門開發(fā)的移動(dòng)全平臺(tái)性能測試分析工具平臺(tái)。百度的服務(wù)目前主要為收費(fèi)服務(wù)。 隨著移動(dòng)互聯(lián)網(wǎng)的高速發(fā)展,App 應(yīng)用非常火,測試工程師也會(huì)接觸到各種 app 應(yīng)用。除了人工測試之外,也可以通過一些測試工具來提高我們的測試效率...
閱讀 1007·2023-04-25 14:45
閱讀 2784·2021-09-30 09:59
閱讀 3129·2021-09-22 15:48
閱讀 2430·2019-08-30 15:55
閱讀 3481·2019-08-30 15:44
閱讀 550·2019-08-29 14:07
閱讀 3418·2019-08-26 13:45
閱讀 544·2019-08-26 11:31