我想在运行时获取android元素的资源ID和内容描述。
我试过这个:
myElement.getAttribute("resource-id")
myElement.getAttribute("content-desc")
但错误为“this element does not have the resource-id attribute
”。
有没有办法解决这个问题?
答案 0 :(得分:9)
根据这个post,获得“content-desc”的方法就是使用 myElement.getAttribute( “名称”)。
答案 1 :(得分:6)
用于资源ID:webElement.getAttribute("resourceId")
答案 2 :(得分:1)
获取内容使用:
myElement.getAttribute("contentDescription")