使用Appium v​​.1.2.0在ListView中查找元素

时间:2014-07-08 23:33:20

标签: android appium

WebElement list = explicitWaitForElement(driver, By.xpath("//android.widget.ListView[1]"));
List<WebElement> weekObjectList = list.findElements(By.xpath("//android.widget.RelativeLayout"));

以上代码对我不起作用。看起来Appium v​​1.2.0存在一些问题。如果我们有任何解决方法,请告诉我。

1 个答案:

答案 0 :(得分:1)

请尝试使用以下内容:

List<WebElement> weekObjectList = driver.findElements(By.xpath("//android.widget.ListView[1]//android.widget.RelativeLayout"));