This repository has been archived by the owner on Mar 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 422
[ios]通过下标定位元素问题 #144
Comments
发现数组下标0定位的元素和1效果相同 |
到底是一样还是不一样 |
1.使用下标的的方式去遍历页面中的存在的元素,exists属性只有下标为0是返回True,其余返回False;而使用text属性下标0的出的值和1重复 2.若使用xpath定位元素,d(xpath=“//StaticText”)[index].text, index下标设任何数,都只定位到该StaticText类型节点的第一个元素 3.之前用len()统计定位到相同类型的元素个数,现在无法使用 |
Xpath 不支持外面用index的 |
那通过下标索引定位元素,判断是否存在,为什么除了Index=0其他都返回false? |
我也遇到相同问题,不加索引识别到第一个元素,加索引只能识别index=0的元素,其他识别不了 @codeskyblue |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
例如一个页面有多个Cell或Button/StaticText等属性元素,假设用d(className="Cell")进行定位。
用exists属性检查元素是否存在,d(className="Cell")[0].exists正常返回True,而d(className="Cell")[1].exists返回False,1以上目前都返回False
The text was updated successfully, but these errors were encountered: