无法使用follow-sibling和previous-sibling识别元素

时间:2017-08-24 14:07:29

标签: selenium xpath appium uiautomator

我想确定第3个元素 TextView:Completed 元素 线性布局

在第5个线性布局中使用元素 TextView:Ashraf Mulla

我在xpaths下面尝试但是它无法识别COMPLETED元素。

  

Xpath 1:“// android.widget.TextView [@ text ='Ashraf   穆拉 '] /../前同辈:: android.widget.LinearLayout / android.widget.TextView [@文本=' 已完成“]”

     

Xpath 2:   “//android.widget.TextView[@text='COMPLETED']/../following-sibling::android.widget.LinearLayout/android.widget.TextView[@text='Ashraf   穆拉']“

UIAUTOMATORVIEWER_img

请帮忙。

1 个答案:

答案 0 :(得分:0)

Xpath下面应该适合你

"TextView[@text='Ashraf Mulla']/ancestor::android.widget.LinearLayout/android.widget.TextView[@text='COMPLETED']"