如何获取android元素的资源ID'和'内容说明' appium java中的属性值?

时间:2014-11-17 09:32:11

标签: java android appium android-uiautomator

我想在运行时获取android元素的资源ID和内容描述。

我试过这个:

myElement.getAttribute("resource-id")
myElement.getAttribute("content-desc")

但错误为“this element does not have the resource-id attribute”。

有没有办法解决这个问题?

3 个答案:

答案 0 :(得分:9)

根据这个post,获得“content-desc”的方法就是使用 myElement.getAttribute( “名称”)。

答案 1 :(得分:6)

用于资源ID:webElement.getAttribute("resourceId")

答案 2 :(得分:1)

获取内容使用:

myElement.getAttribute("contentDescription")