我正在为 Android 做 Appium,我已经知道如何使用 scrollIntoView() 来查找元素。
我的表是这样的:
(2)TableLayout
(0)TableRow
(0)LinearLayout
(1)LinearLayout
(0)TextView:Tom
(1)TextView:OPEN
(2)TextView:OPEN
(1)TableRow
(0)LinearLayout
(1)LinearLayout
(0)TextView:Jack
(1)TextView:OPEN
(2)TextView:OPEN
如上所述,我可以使用文本“Tom”和 id 定位 (0)TextView。但是,我想要的是找到 (1)TextView 并单击它。有没有办法做到这一点?
我正在寻找类似的东西:
MobileElement tom = the (0)TextView I located;
MobileElement target = tom.findElement(__);
target.click();