String text = "";
String parseText = "";
for(int i = 0; i < fileCount ; i++){
String xpath = "//android.widget.RelativeLayout[@resource-id='com.app.package:id/item']["+i+"]"
+ "//android.widget.TextView";
text = appium.getText(By.xpath(xpath));
getText method
public String getText(By locator) {
WebElement element = waitForIsElementPresent(locator);
return element.getText();
}
I can not get text
why ?