51Testing软件测试论坛

标题: uiAutomator打开通知栏的方法 [打印本页]

作者: 悠悠小仙仙    时间: 2019-3-1 15:43
标题: uiAutomator打开通知栏的方法

uiAutomator里面有这个几个类: UiDevice UiSelect UiObject

在stackoverflow上面有一个回答是通过获取到通知栏的UiObject对象来做处理的,代码如下

  1. Selector notificationStackScroller = new UiSelector().packageName("com.android.systemui")
  2.             .className("android.view.ViewGroup")
  3.             .resourceId(
  4.                     "com.android.systemui:id/notification_stack_scroller");
  5.     UiObject notificationStackScrollerUiObject = mDevice.findObject(notificationStackScroller);
  6.     assertTrue(notificationStackScrollerUiObject.exists());
复制代码

但是这应该是通知栏打开之后的操作了,那么怎么打开通知栏呢,代码如下

  1. /**
  2.          * 通过手势操作打开通知栏
  3.          * @throws UiObjectNotFoundException
  4.          */
  5.         public void testViewNotification() throws UiObjectNotFoundException{
  6.                
  7.                 device.pressHome();
  8.                
  9.                 device.swipe(300, 0, 300, 800, 50);
  10.                 device.waitForIdle(2000);
  11.                 device.pressBack();
  12.                
  13.         }
复制代码

通过UiDevice中的swipe方法,模拟滑动操作,从状态栏上面下滑, 方法是UiDevice.swipe(startX,startY,endX,endY,steps)



作者: 疯愚者    时间: 2019-3-13 16:26
你既然有uiAutomator,那肯定安装了androidSDK,直接用自带的swipe方法不就好了,绕这么一大圈




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2