Uiautomator中longClick方法时间长度无法调节的解决办法

很早就想分享此问题的解决办法,但总是找不到时间


在Uiautomator测试初期实施中,会遇到方法无法满足的情况,比如较常用的LongClick方法,此方式不太清楚到底多长(看到网上过说1000ms的,但官方文档里面没找到),但就是无法点击成功,每次都是执行单击的操作。


首先想到的方法是UiDevice中的swipe方法,此方法使用坐标定位滑动屏幕,参数是swipe(x, y, x, y, steps),借用这个方法的自定义steps可以达到任意长度的滑动,并且将起始点合并为一点,即可实现长按的功能。

文档中对swipe的描述是,每步5ms

Performs a swipe from one coordinate to another using the number of steps to determine smoothness and speed. Each step execution is throttled to 5ms per step. So for a 100 steps, the swipe will take about 1/2 second to complete.


但是这个方法有很大的问题,只能通过坐标点击,这可是自动化实施的大忌,那结合另外的方法,对这个swipe进行重新封装,可以实现控件长按操作,如下:

	/**
	 * 控件长按操作
	 * @param ud
	 * @param uiObject
	 * @param steps
	 * @throws UiObjectNotFoundException
	 */
	public  void longClick(UiDevice ud, UiObject uiObject,int steps) throws UiObjectNotFoundException{
		ud.swipe(uiObject.getBounds().centerX(), uiObject.getBounds().centerY(),
				uiObject.getBounds().centerX(), uiObject.getBounds().centerY(), steps);
	}

利用测试方法试一下

common.longClick(getUiDevice(), new UiObject(Selector.textSelector("四")), 36);

注意,这里的36是我多次试出来的最小值,如果选择35,还是单击效果,这样算来,在这个按钮上要至少达到175ms以上才算长按。不过这里可以按照需要自己调节,一般用1000ms以上避免麻烦。

你可能感兴趣的:(移动端,自动化测试)