Robotium web控件测试方法,WebElement和By类

http://blog.csdn.net/luckyyulin/article/details/19156997


在Robotium中,可以通过id、index、控件名称或者对应的text正则表达式来定位一个本地的控件。那么对于外部的web控件来说,在你的程序里面无法像本地控件一样找到id、index什么的,怎么来定位呢?

其实Robotium提供了定位web控件的类和方法,分别在By和Solo里面。其中By是专门用来定位web属性的,Solo里面部分方法是可以用于web控件的,部分方法是专门为了web控件设置的。

大家可以使用PC端的浏览器模拟User-Agent为android手机的方式,来查看web控件的属性。Chrome有自带的User-Agent模拟,FireFox需要下载插件才可以。我就是用的FireFox的插件,如下图:



By里面的方法介绍

By id(String id)

通过id来定位一个WebElement,最常用的方法,一般来说是首选。

参数:

id-WebElement的id

返回值

By-定位的WebElement


By name(String name)

通过name来定位一个WebElement,也很常用。

参数:

name-WebElement的name

返回值

By-定位的WebElement


By className(String ClassName)

通过className来定位一个WebElement,也很常用。

参数:

className-WebElement的className

返回值

By-定位的WebElement


By tagName(String tagName)

通过tagName来定位一个WebElement,也很常用。

参数:

tagName-WebElement的tagName

返回值

By-定位的WebElement


By xpath(String xpath)

通过xpath来定位一个WebElement,定位搜索结果的不二选择。

参数:

xpath-WebElement的xpath

返回值

By-定位的WebElement


By cssSelector(String sccSelector)

通过cssSelector来定位一个WebElement。据说是速度最快的识别方法,但我对css没那么熟,不经常使用。

参数:

cssSelector-WebElement的cssSelector

返回值

By-定位的WebElement


By textContent(String textContent)

通过textContent来定位一个WebElement,可以使用正则表达式。据说是最慢的识别方式,不推荐使用。

参数:

textContent-WebElement的textContent

返回值

By-定位的WebElement


String getValue()

返回属性的值

参数:


返回值:

该属性的值



Solo里面的WebElement专有方法,由于前面已经有介绍,在此不加赘述了

void clearTextInWebElement (By by)

清除WebElement中的值

void clickOnWebElement(By by [, int match, boolean scroll])

点击WebElement,通过web属性识别

void clickOnWebElement(WebElement webElement)

点击WebElement,通过webElement名称识别

void enterTextInWebElement (By by, String Text)

输入内容,通过web属性识别webElement

void typeTextInWebElement (By by | WebElement webElement , String Text [, int match])

输入内容,通过web属性识别webElement

ArrayList<WebElement> getCurrentWebElements([By by])

获取所有WebElement,并存到ArrayList中

WebElement getWebElement (By by, int index)

获取WebElement,通过web属性识别

boolean waitForWebElement (By by [, int minimumNumberOfMatches, int timeout , boolean scroll})

等待WebElement响应



Solo里面的WebElement和Native控件共有的方法

void clickOnText(String text [, int match , boolean scroll])

点击文字,通过text识别,支持正则表达式

void clickLongOnText(String text [, int match , int time|boolean scroll])

长按文字,通过text识别,支持正则表达式


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值