2017-02-03 50 views
0

如何獲取RecyclerView下的框架或文本列表。如何獲取RecyclerView下的框架或文本列表?

總是列出webelements返回null。使用AppiumUI AutomatorViewer進行查看android app xpath

我已經嘗試了下面的代碼,但它並沒有爲我工作。

WebElement plist = wd.findElement(By.xpath("//android.support.v7.widget.RecyclerView[contains(@resources-id,'id/patient_list_view') and @index='6']")); 

回答

0

您可以解決如下所述,

List<WebElement> alltheListfromView=driver.findElementsByXPath("//*[@resources-id,'id/patient_list_view']"); 
//Add if any other elements attributes are available 

for (WebElement elements: alltheListfromView) { 
    System.out.println(webElement.getText()); 

} 
相關問題