Reputation: 1
WebElement list = explicitWaitForElement(driver, By.xpath("//android.widget.ListView[1]"));
List<WebElement> weekObjectList = list.findElements(By.xpath("//android.widget.RelativeLayout"));
The above code is not working for me. Looks like there are some issues with Appium v1.2.0. Let me know if we have any workaround.
Upvotes: 0
Views: 3735
Reputation: 1054
Please Try with the following:
List<WebElement> weekObjectList = driver.findElements(By.xpath("//android.widget.ListView[1]//android.widget.RelativeLayout"));
Upvotes: 1