摘要:在使用自动化测试框架过程中,基于对控件实现长按,发现自带的方法很多时候不能实现对控件的长按,因此需要重写该方法。主要代码如下调用方式在使用自动化框架时,调用方法来实现对控件长按效果。其中参数控件对象,表示长按时间,单位为毫秒。
在使用uiautomator自动化测试框架过程中,基于对控件实现长按,发现uiautomator自带的方法longClick()很多时候不能实现对控件的长按,因此需要重写该方法。
主要代码如下:
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; }
调用方式:
在使用uiautomator自动化框架时,调用longClickWithTime(Object, time)方法来实现对UiObject控件长按效果。其中Object参数:uiautomator UiObject控件对象,time:表示长按时间,单位为毫秒。
例如:对手机主页时钟按钮进行长按5s操作,
longClickWithTime(new UiCollection(new UiObject(new UiSelector().text("Clock")), 5000);
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/65172.html
摘要:使用包控制手机时,需要在手机上安装在电脑中使用弹出运行框,在框内输入调用命令行窗口。具备较多功能,在此不再赘述,百度具有较多资料。调试工具用于查看手机当前状态用浏览器控制手机调试手机,还可以实时的查找控件中的属性以及其它属性值等等。 1. 配置Python环境变量 Python环境变...
摘要:三性能测试工具官网介绍腾讯开源的的随身调测平台,支持和。官网介绍腾讯游戏部门开发的移动全平台性能测试分析工具平台。百度的服务目前主要为收费服务。 随着移动互联网的高速发展,App 应用非常火,测试工程师也会接触到各种 app 应用。除了人工测试之外,也可以通过一些测试工具来提高我们的测试效率...
阅读 967·2023-04-25 14:45
阅读 2715·2021-09-30 09:59
阅读 3079·2021-09-22 15:48
阅读 2389·2019-08-30 15:55
阅读 3381·2019-08-30 15:44
阅读 503·2019-08-29 14:07
阅读 3387·2019-08-26 13:45
阅读 516·2019-08-26 11:31