使用Robotium时,很多时候通过唯一的ID或text,即可找到对应控件,并进行操作。不过,编写用例较多时,总会遇到过以下类似操作问题:
1、在界面中,有多个相同的ID怎么办?
2、在界面中,有多个相同的text怎么办?
3、使用uiautomator,只有唯一的ID或text,但一直操作不成功怎么办?
4、在界面中,没有ID或text怎么办?
5、在界面中,webview控件怎么办?
6、使用ID或text,无论如何也无法操作某个按钮怎么办?
对于这类问题,只要解决了点击控件存在的问题,基本也能解决其他操作的同类问题。所以,下面以点击操作为例,说明各种情况的处理。
在界面中,有多个相同的ID怎么办?
点击操作为:solo.clickOnView(solo.getView(sview,第n个id))。即先通过getView()得到对应第n个id的view,然后再使用clickOnView点击控件。public android.view.View getView(Stringed,int index)
Returns a View matching the specified resource id andindex.
Parameters:
id - the id of the View to return
index - the index of the View. 0 if only one is available
Returns:
a View matching the specified id and index
public void clickOnView(android.view.View view)
Clicks the specified View.
Parameters:
view - the View to click
在界面中,有多个相同的text怎么办?
Robotium提供了方法,可以指定操作第几个匹配的值。public void clickOnText(String text,int match)
Clicks a View or WebElement displaying the specified text. Will automatically scroll when needed.
Parameters:
text - the text to click. The parameter will be interpreted as a regular expression
match - if multiple objects match the text, this determines which one to click
使用uiautomator,只有唯一的ID或text,但操作不成功怎么办?
这是由于使用uiautomator能看到ID或text的view,只是可以获取的所有view的子集;有些控件的ID或text虽然符合要求,但通过uiautomator根本找不到。可以通过getCurrentViews()获取控件结果,然后自己分析是否存在包含相同的ID或text的其他控件。public ArrayList getCurrentViews()
Returns an ArrayList of the Views currently displayed inthe focused Activity or Dialog.
Returns:
an ArrayList of the View objects currently displayed in the focused window
在界面中,没有ID或text怎么办?
可以通过找到控件的父节点或祖父节点的ID的方式,来获取对应的控件的ID或进行某些点击操作。如
solo.clickOnView(((ViewGroup)solo.getView(sview)).getChildAt(第n个子节点));
就是先通过父节点的id,找到子节点的ID对应的view,然后进行点击操作。
或者,实在实现困难的话,可以和开发人员交流,在代码中增加对应控件的ID,既能帮助测试提高代码质量,也能提高App的可测试性。
在界面中,有webview控件怎么办?
使用一下webview函数进行操作。下次分享将详细讲解webview的相关界面自动化开发。Clicks a WebElement matching the specified By object.
Clicks a WebElement matching the specified By object.
clickOnWebElement(By by, int match, boolean scroll)
Clicks a WebElement matching the specified By object.
Clicks the specified WebElement.
使用ID或text,无论如何也无法操作某个按钮怎么办?
如果操作ID或text实在无法解决,可以通过先找到控件的坐标范围,然后点击对应控件的中心坐标的方式解决。另外,有些封装导致的无法获得ID或text问题,有时可以通过反射,来达到目标。public void clickOnScreen(float x,float y,int numberOfClicks)
Clicks the specified coordinates rapidly a specified number of times. Requires API level >= 14.
Parameters:
x - the x coordinate
y - the y coordinate
number Of Clicks - the number of clicks to perform